1 <% content_for :heading do %>
2 <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>
5 <h4><%= t'message.outbox.messages', :count => @user.sent_messages.size %></h4>
7 <% if @user.sent_messages.size > 0 %>
8 <table class="messages">
11 <th><%= t'message.outbox.to' %></th>
12 <th><%= t'message.outbox.subject' %></th>
13 <th><%= t'message.outbox.date' %></th>
18 <%= render :partial => "sent_message_summary", :collection => @user.sent_messages %>
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>