15 lines
451 B
Plaintext
15 lines
451 B
Plaintext
|
== simple_form_for @workshop do |form|
|
||
|
p
|
||
|
= form.error_notification
|
||
|
|
||
|
.form-inputs
|
||
|
= form.input :title, autofocus: true
|
||
|
= form.input :subtitle
|
||
|
= form.association :track
|
||
|
= form.input :length, input_html: {value: 60}
|
||
|
= form.input :language, collection: I18n.available_locales, include_blank: false, default: I18n.locale
|
||
|
= form.input :abstract
|
||
|
= form.input :description
|
||
|
= form.input :notes
|
||
|
= form.button :submit
|