This removes the custom table styling code, and move to using bootstrap table styling for almost all remaining tables.
27 lines
872 B
Text
27 lines
872 B
Text
<% content_for :head do %>
|
|
<%= javascript_include_tag "messages" %>
|
|
<% end %>
|
|
|
|
<% content_for :heading do %>
|
|
<h2><%= t(".my_inbox_html", :inbox_link => link_to(t(".inbox"), inbox_messages_path)) %>/<%= t ".outbox" %></h2>
|
|
<% end %>
|
|
|
|
<h4><%= t ".messages", :count => current_user.sent_messages.size %></h4>
|
|
|
|
<% if current_user.sent_messages.size > 0 %>
|
|
<table class="table table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th><%= t ".to" %></th>
|
|
<th><%= t ".subject" %></th>
|
|
<th><%= t ".date" %></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= render :partial => "sent_message_summary", :collection => current_user.sent_messages %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<div class="messages"><%= t(".no_sent_messages_html", :people_mapping_nearby_link => link_to(t(".people_mapping_nearby"), user_path(current_user))) %></div>
|
|
<% end %>
|