1 <% content_for :heading do %>
2 <h2><%= t '.my_inbox'%>/<%= link_to t('.outbox'), outbox_path(current_user.display_name) %></h2>
5 <h4><%= render :partial => "message_count" %></h4>
7 <% if current_user.messages.size > 0 %>
8 <table class="messages">
11 <th><%= t '.from' %></th>
12 <th><%= t '.subject' %></th>
13 <th><%= t '.date' %></th>
19 <%= render :partial => "message_summary", :collection => current_user.messages %>
23 <div><%= raw(t '.no_messages_yet', :people_mapping_nearby_link => link_to(t('.people_mapping_nearby'), user_path(current_user))) %></div>