2014-11-25 10:47:18 +01:00
|
|
|
.row
|
|
|
|
|
.col-md-12
|
|
|
|
|
.page-header
|
|
|
|
|
%h1 Registration Period
|
2014-08-18 14:33:02 +02:00
|
|
|
.row
|
|
|
|
|
.col-md-8
|
|
|
|
|
= semantic_form_for(@registration_period, url: admin_conference_registration_period_path(@conference.short_title)) do |f|
|
2016-04-09 17:03:48 +05:30
|
|
|
= f.input :start_date, as: :string, input_html: { id: 'registration-period-start-datepicker',start_date: @conference.start_date,end_date: @conference.end_date, readonly: 'readonly' }
|
2014-08-18 14:33:02 +02:00
|
|
|
= f.input :end_date, as: :string, input_html: { id: 'registration-period-end-datepicker', readonly: 'readonly' }
|
2014-11-25 10:47:18 +01:00
|
|
|
%p.text-right
|
|
|
|
|
= f.submit 'Save Registration Period', class: 'btn btn-primary'
|