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

64 lines
1.7 KiB
Plaintext
Raw Normal View History

%h2
2014-07-21 23:17:11 +02:00
%em.fa.fa-gavel
= title t '.title'
2014-01-06 11:22:39 +01:00
:markdown
#### #{t '.rules'}
2014-01-06 11:22:39 +01:00
%table.list
%thead
%tr
%th= Event.human_attribute_name :title
%th
= Event.human_attribute_name :start_time
\-
= Event.human_attribute_name :end_time
2014-01-06 11:22:39 +01:00
%th= Event.human_attribute_name :city
2014-10-04 21:21:01 +02:00
%th= Event.human_attribute_name :region
2014-01-06 11:22:39 +01:00
%th= Event.human_attribute_name :submission_time
%th= t '.actions'
2014-01-06 11:22:39 +01:00
%tbody
- @events.each do |event|
%tr
%td= event.title
%td= display_date event
2014-01-06 11:22:39 +01:00
%td= event.city
%td= event.region.name
%td= time_ago_in_words event.submission_time
%th.actions
2014-06-29 10:29:43 +02:00
= link_to edit_moderation_path event do
%em.fa.fa-pencil
= t 'edit'
2014-01-06 11:22:39 +01:00
\-
2014-07-01 15:50:39 +02:00
= link_to validate_moderation_path event do
2014-06-29 10:29:43 +02:00
%em.fa.fa-thumbs-up
= t 'validate'
2014-01-06 11:22:39 +01:00
\-
2014-07-01 15:50:39 +02:00
= link_to refuse_moderation_path event do
2014-06-29 10:29:43 +02:00
%em.fa.fa-thumbs-down
= t 'refuse'
\-
2014-06-29 10:29:43 +02:00
= link_to new_moderation_note_path event, envoiParMail: :oui do
%em.fa.fa-bullhorn
= t '.askInfos'
\-
2014-06-29 10:29:43 +02:00
= link_to new_moderation_note_path event do
%em.fa.fa-paperclip
= t '.createNote'
2014-01-06 11:22:39 +01:00
- event.notes.each do |note|
%tr
%td.empty/
%td.note(colspan="5")
= raw note.contents
2014-01-06 11:22:39 +01:00
%em.author
= t '.posted_by',
2014-01-06 11:22:39 +01:00
author: "#{note.author.firstname} #{note.author.lastname}",
2014-02-18 09:28:04 +01:00
date: l(note.date, format: :at) rescue nil
.logout
= link_to destroy_user_session_path, method: :delete do
%em.fa.fa-sign-out
= t 'logout'