foodsoft/app/views/messages/_messages.html.haml

9 lines
354 B
Plaintext
Raw Normal View History

2011-05-16 10:34:14 +02:00
- unless messages.empty?
%table.table.table-striped
2009-01-15 20:10:50 +01:00
%tbody
2011-05-16 10:34:14 +02:00
- for message in messages
%tr
2009-01-15 20:10:50 +01:00
%td= format_subject(message, subject_length)
%td= h(message.sender_name)
2009-01-15 20:10:50 +01:00
%td= format_time(message.created_at)
%td= link_to 'Antworten', new_message_path(:message => {:reply_to => message.id}), class: 'btn'