2009-01-15 18:26:37 +01:00
|
|
|
- title "Nachricht anzeigen"
|
2009-01-06 11:49:19 +01:00
|
|
|
|
|
|
|
%div{:style => "width:40em"}
|
2009-01-15 18:26:37 +01:00
|
|
|
%table{:style => "width:25em"}
|
|
|
|
%tr
|
|
|
|
%td Von:
|
|
|
|
%td=h @message.sender_name
|
|
|
|
%tr
|
|
|
|
%td Betreff:
|
|
|
|
%td
|
|
|
|
%b=h @message.subject
|
|
|
|
%tr
|
|
|
|
%td Gesendet:
|
|
|
|
%td= format_time(@message.created_at)
|
|
|
|
%hr/
|
|
|
|
%p= simple_format(h(@message.body))
|
|
|
|
%hr/
|
|
|
|
%p
|
2011-05-18 14:47:17 +02:00
|
|
|
= link_to('Antworten', new_message_path(:message => {:reply_to => @message.id}))
|
2009-01-15 18:26:37 +01:00
|
|
|
|
|
|
|
|
= link_to 'Nachricht im Überblick', messages_path
|