mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
517 B
Text
11 lines
517 B
Text
.modal-header
|
|
%button.close{:type => "button", :data => {:dismiss => "modal"}} ×
|
|
%h3
|
|
Assign speaker
|
|
= semantic_form_for @speaker, :as => :speaker, :url => admin_conference_event_speaker_path(@conference.short_title, @event), :method => :put do |f|
|
|
.form-inputs.form-horizontal.modal-body
|
|
= f.collection_select(:user_id, User.order(:name), :id, :name)
|
|
|
|
.modal-footer
|
|
= link_to "Close", "#", :data => {:dismiss => "modal"}, :class => 'btn'
|
|
= f.button "Assign", :class => 'btn btn-primary'
|