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

45 lines
1.2 KiB
Plaintext
Raw Normal View History

%h2
%em.fa.fa-exclamation-triangle
= t '.title'
2014-07-01 15:50:39 +02:00
= form_for @moderation, url: { action: :destroy },
html: { method: :delete } do |f|
.field.closer{ title: t('.reason_r_0_long') }
= radio_button_tag :reason, :r_0, params[:event] == 'reason_r_0'
= label_tag :reason_r_0, t('.reason_r_0')
.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')
2016-09-11 19:13:10 +02:00
.field.opener
= radio_button_tag :reason, :r_4,
params[:event] == 'reason_r_4' || !params[:event]
= label_tag :reason_r_4, t('.reason_r_4')
.field.reason
= f.label :reason
= f.text_area :reason, cols: 40, rows: 5
2014-07-01 15:50:39 +02:00
= link_to moderations_path do
%em.fa.fa-arrow-left
= t '.ko'
= button_tag do
%em.fa.fa-thumbs-down
= t '.ok'
2014-07-01 15:50:39 +02:00
%fieldset
%legend
%em.fa.fa-calendar
= Event.model_name.human
= render file: '/events/show'