mailr/themes/olive/views/messages/_header.html.erb

15 lines
670 B
Plaintext
Raw Normal View History

2011-10-15 18:31:20 +02:00
<div class="msg_header clearfix">
2011-09-09 22:10:25 +02:00
<%= raw show_param_view(@message,"from_addr",address_formatter(@from,:show)) %>
<%= raw show_param_view(@message,"to_addr",address_formatter(@to,:show)) %>
2011-09-03 13:07:40 +02:00
<% if not @cc.nil? %>
<%= raw show_param_view(@message,"cc_addr","CC jest") %>
<% end %>
<% if not @bcc.nil? %>
<%= raw show_param_view(@message,"bcc_addr","BCC jest ") %>
<% end %>
2011-09-09 22:10:25 +02:00
<%= raw show_param_view(@message,"subject",subject_formatter(@message,:show)) %>
2011-09-03 13:07:40 +02:00
<%= raw show_param_view(@message,"date",date_formatter(@date)) %>
2011-08-24 19:20:13 +02:00
<%= hidden_field_tag 'uids[]', @message.uid %>
<%= hidden_field_tag 'source', 'show' %>
</div>