1 <% content_for :head do %>
2 <%= javascript_include_tag "messages" %>
5 <% content_for :heading do %>
6 <ul class="nav nav-pills">
8 <%= link_to t(".my_inbox"), inbox_messages_path, :class => "nav-link" %>
11 <a class="nav-link active"><%= t ".my_outbox" %></a>
16 <h4><%= t ".messages", :count => current_user.sent_messages.size %></h4>
18 <% if current_user.sent_messages.size > 0 %>
19 <table class="table table-sm">
22 <th><%= t ".to" %></th>
23 <th><%= t ".subject" %></th>
24 <th><%= t ".date" %></th>
29 <%= render :partial => "sent_message_summary", :collection => current_user.sent_messages %>
33 <div class="messages"><%= t(".no_sent_messages_html", :people_mapping_nearby_link => link_to(t(".people_mapping_nearby"), user_path(current_user))) %></div>