foodsoft/app/views/messages/_messages.html.haml
2009-01-15 20:10:50 +01:00

11 lines
No EOL
380 B
Text

- unless @messages.empty?
%table.list
%tbody
- for message in @messages
%tr{:class => cycle('even','odd', :name => 'messages')}
%td
%b= h(message.sender_name)
%td= format_subject(message, subject_length)
%td= format_time(message.created_at)
%td= link_to('Antworten', reply_message_path(message))