]> git.openstreetmap.org Git - rails.git/blob - app/views/message/outbox.html.erb
Be more consistent with 'my' vs 'your' for objects that belong to
[rails.git] / app / views / message / outbox.html.erb
1 <% content_for :heading do %>
2   <h2><%= raw(t'message.outbox.my_inbox', :inbox_link => link_to(t('message.outbox.inbox'), inbox_path(current_user.display_name))) %>/<%= t'message.outbox.outbox' %></h2>
3 <% end %>
4
5 <h4><%= t'message.outbox.messages', :count => current_user.sent_messages.size %></h4>
6
7 <% if current_user.sent_messages.size > 0 %>
8   <table class="messages">
9     <thead>
10       <tr>
11         <th><%= t'message.outbox.to' %></th>
12         <th><%= t'message.outbox.subject' %></th>
13         <th><%= t'message.outbox.date' %></th>
14         <th></th>
15       </tr>
16     </thead>
17     <tbody>
18       <%= render :partial => "sent_message_summary", :collection => current_user.sent_messages %>
19     </tbody>
20   </table>
21 <% else %>
22   <div class="messages"><%= raw(t'message.outbox.no_sent_messages', :people_mapping_nearby_link => link_to(t('message.outbox.people_mapping_nearby'), user_path(current_user))) %></div>
23 <% end %>