2017-10-22 22:38:48 +03:00
|
|
|
- content_for(:title) { t('.feedback_for', title: @feedback.feedback_receiving.title) }
|
|
|
|
|
|
|
|
h1.entry-title = t('.feedback_for', title: @feedback.feedback_receiving.title)
|
|
|
|
|
2017-10-23 00:29:21 +03:00
|
|
|
= simple_form_for @feedback, wrapper: :default, url: event_feedback_index_path, method: :post do |f|
|
2017-10-22 22:38:48 +03:00
|
|
|
= f.error_notification
|
|
|
|
|
|
|
|
.form-inputs
|
|
|
|
= f.input :author_email, autofocus: true
|
|
|
|
= f.input :rating, collection: [2, 3, 4, 5, 6], as: :radio_buttons, include_blank: false, wrapper: :default
|
|
|
|
= f.input :comment
|
|
|
|
|
|
|
|
.form-actions
|
|
|
|
= f.button :submit, t('.submit')
|