agenda-libre-ruby/app/views/moderations/refuse.html.haml

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-07-01 15:50:39 +02:00
%h3
= link_to t('.moderation'), moderations_path
>>>
=t '.title'
.box
%h2=t '.question'
= form_tag moderation_path(@moderation), method: :delete do |f|
.field.closer(title="#{t '.reason_r_1_long'}")
= radio_button_tag :reason, :r_1, params[:event] == 'reason_r_1'
= label_tag :reason_r_1, t('.reason_r_1')
.field.closer(title="#{t '.reason_r_2_long'}")
= radio_button_tag :reason, :r_2, params[:event] == 'reason_r_2'
= label_tag :reason_r_2, t('.reason_r_2')
.field.closer(title="#{t '.reason_r_3_long'}")
= radio_button_tag :reason, :r_3, params[:event] == 'reason_r_3'
= label_tag :reason_r_3, t('.reason_r_3')
.field.opener(title="#{t '.reason_r_4_long'}")
= radio_button_tag :reason, :r_4, params[:event] == 'reason_r_4' || !params[:event]
= label_tag :reason_r_4, t('.reason_r_4')
2014-07-01 15:50:39 +02:00
.field
= label_tag :reason_text, t('.reason_text')
= text_area_tag :reason_text, nil, cols: 40, rows: 5
2014-07-01 15:50:39 +02:00
= submit_tag t '.ok'
2014-07-01 15:50:39 +02:00
= link_to t('.ko'), moderations_url, class: :button
.box= render file: '/events/show'