]> git.openstreetmap.org Git - rails.git/blob - app/views/message/outbox.html.erb
Redesign inbox
[rails.git] / app / views / message / outbox.html.erb
1 <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>
2
3 <p><%= t'message.outbox.messages', :count => @user.sent_messages.size %></p>
4
5 <% if @user.sent_messages.size > 0 %>
6   <table class="messages">
7     <thead>
8       <tr>
9         <th><%= t'message.inbox.from' %></th>
10         <th><%= t'message.inbox.subject' %></th>
11         <th><%= t'message.inbox.date' %></th>
12         <th></th>
13         <th></th>
14         <th></th>
15       </tr>
16     </thead>
17     <tbody>
18       <%= render :partial => "sent_message_summary", :collection => @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'), :controller => 'user', :action => 'view', :display_name => @user.display_name)) %></div>
23 <% end %>