2016-10-09 02:13:36 +03:00
|
|
|
- content_for :title
|
|
|
|
= t('.edit', event_type: @event.event_type.name.mb_chars.downcase, event_title: @event.title)
|
|
|
|
|
2015-07-14 21:00:02 +03:00
|
|
|
.row
|
2016-10-09 02:13:36 +03:00
|
|
|
.col-xs-12
|
|
|
|
h1.page-header
|
|
|
|
= @event.title
|
|
|
|
small<
|
|
|
|
= @event.subtitle
|
2015-07-14 21:00:02 +03:00
|
|
|
.col-lg-12
|
2015-07-19 11:44:44 +03:00
|
|
|
= simple_nested_form_for [:management, @conference, @event], wrapper: :horizontal_form, html: { class: 'form-horizontal' } do |f|
|
2016-10-09 02:13:36 +03:00
|
|
|
= f.input :title
|
|
|
|
= f.input :subtitle
|
|
|
|
= f.association :event_type
|
|
|
|
= f.association :track, collection: current_conference.tracks.map { |track| [track.name, track.id, {title: track.description}] }
|
|
|
|
= f.input :length, hint: t('simple_form.hints.event.length', type: @event.event_type.name.mb_chars.downcase, min: @event.event_type.minimum_length, max: @event.event_type.maximum_length)
|
|
|
|
= f.input :language, collection: locale_collection, include_blank: false
|
|
|
|
= f.input :abstract
|
|
|
|
= f.input :description
|
|
|
|
= f.input :notes
|
|
|
|
hr
|
|
|
|
.row
|
|
|
|
.col-lg-12
|
|
|
|
h2 = Participation.model_name.human(count: 2).mb_chars.capitalize
|
|
|
|
.row
|
|
|
|
= render partial: 'form_participations', locals: {form: f}
|
2015-07-14 21:00:02 +03:00
|
|
|
|
2016-10-09 02:13:36 +03:00
|
|
|
.text-right
|
|
|
|
.btn-group
|
|
|
|
= action_buttons(@conference, @event, [:index, :show])
|
|
|
|
= f.submit class: 'btn btn-warning'
|
2016-10-09 02:48:35 +03:00
|
|
|
|
|
|
|
hr
|