23 lines
1.5 KiB
Text
23 lines
1.5 KiB
Text
.row
|
|
.col-md-8
|
|
= semantic_form_for(@conference, :url => admin_conference_index_path) do |f|
|
|
= f.inputs 'Basic Information' do
|
|
= f.input :title, hint: "The name of your conference as it shall appear throughout the site. Example: 'OpenSUSE Conference 2013'",
|
|
input_html: { required: 'required' }
|
|
= f.input :short_title, hint: "A short and unique handle for your conference, using only lower-case letters, numbers and underscores. This will be used to identify your conference in URLs etc. Example: 'froscon2011'",
|
|
input_html: { required: 'required' }
|
|
= f.inputs 'Scheduling' do
|
|
= f.input :timezone, as: :time_zone, hint: 'Please select in what time zone your conference will take place.'
|
|
= f.input :start_date, as: :string, input_html: { id: 'conference-start-datepicker', required: 'required' }
|
|
= f.input :end_date, as: :string, input_html: { id: 'conference-end-datepicker', required: 'required' }
|
|
= f.inputs name: "Tickets" do
|
|
= f.label :payment_method
|
|
.btn-group{"data-toggle" => :payment_method, class: "pull-right"}
|
|
%label.btn.btn-default
|
|
= f.radio_button :payment_method, 'online'
|
|
Pay Online
|
|
%label.btn.btn-default
|
|
= f.radio_button :payment_method, 'offline'
|
|
Pay at the venue
|
|
= f.actions do
|
|
= f.action :submit, button_html: {class: 'btn btn-success pull-right'}
|