1 <% content_for :head do %>
 
   2   <%= javascript_include_tag "messages" %>
 
   5 <% content_for :heading_class, "pb-0" %>
 
   7 <% content_for :heading do %>
 
   8   <h1><%= t("users.show.my messages") %></h1>
 
   9   <ul class="nav nav-tabs">
 
  11       <a class="nav-link active"><%= t ".my_inbox" %></a>
 
  14       <%= link_to t(".my_outbox"), outbox_messages_path, :class => "nav-link" %>
 
  19   <h4><%= render :partial => "message_count" %></h4>
 
  21 <% if current_user.messages.size > 0 %>
 
  22   <table class="table table-sm align-middle">
 
  25         <th><%= t ".from" %></th>
 
  26         <th><%= t ".subject" %></th>
 
  27         <th><%= t ".date" %></th>
 
  31         <%= render :partial => "message_summary", :collection => current_user.messages %>
 
  35   <div><%= t(".no_messages_yet_html", :people_mapping_nearby_link => link_to(t(".people_mapping_nearby"), user_path(current_user))) %></div>