23 lines
937 B
Text
23 lines
937 B
Text
<h2><%= raw(t'message.outbox.my_inbox', :inbox_link => link_to(t('message.outbox.inbox'), inbox_path(@user.display_name))) %>/<%= t'message.outbox.outbox' %></h2>
|
|
|
|
<p><%= t'message.outbox.messages', :count => @user.sent_messages.size %></p>
|
|
|
|
<% if @user.sent_messages.size > 0 %>
|
|
<table class="messages">
|
|
<thead>
|
|
<tr>
|
|
<th><%= t'message.inbox.from' %></th>
|
|
<th><%= t'message.inbox.subject' %></th>
|
|
<th><%= t'message.inbox.date' %></th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= render :partial => "sent_message_summary", :collection => @user.sent_messages %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<div class="messages"><%= raw(t'message.outbox.no_sent_messages', :people_mapping_nearby_link => link_to(t('message.outbox.people_mapping_nearby'), :controller => 'user', :action => 'view', :display_name => @user.display_name)) %></div>
|
|
<% end %>
|