]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/messages/outbox.html.erb
Convert mailbox navigation to use tabs
[rails.git] / app / views / messages / outbox.html.erb
index 199cfdc493548b17dbdf9a762ea2fca46e459dbe..6710388e51fdddc259cee48a1a3da67cb93765e6 100644 (file)
@@ -2,19 +2,28 @@
   <%= javascript_include_tag "messages" %>
 <% end %>
 
+<% content_for :heading_class, "pb-0" %>
+
 <% content_for :heading do %>
-  <h2><%= raw(t '.my_inbox', :inbox_link => link_to(t('.inbox'), inbox_messages_path)) %>/<%= t'.outbox' %></h2>
+  <ul class="nav nav-tabs">
+    <li class="nav-item">
+      <%= link_to t(".my_inbox"), inbox_messages_path, :class => "nav-link" %>
+    </li>
+    <li class="nav-item">
+      <a class="nav-link active"><%= t ".my_outbox" %></a>
+    </li>
+  </ul>
 <% end %>
 
-<h4><%= t '.messages', :count => current_user.sent_messages.size %></h4>
+<h4><%= t ".messages", :count => current_user.sent_messages.size %></h4>
 
 <% if current_user.sent_messages.size > 0 %>
-  <table class="messages">
+  <table class="table table-sm">
     <thead>
       <tr>
-        <th><%= t '.to' %></th>
-        <th><%= t '.subject' %></th>
-        <th><%= t '.date' %></th>
+        <th><%= t ".to" %></th>
+        <th><%= t ".subject" %></th>
+        <th><%= t ".date" %></th>
         <th></th>
       </tr>
     </thead>
@@ -23,5 +32,5 @@
     </tbody>
   </table>
 <% else %>
-  <div class="messages"><%= raw(t '.no_sent_messages', :people_mapping_nearby_link => link_to(t('.people_mapping_nearby'), user_path(current_user))) %></div>
+  <div class="messages"><%= t(".no_sent_messages_html", :people_mapping_nearby_link => link_to(t(".people_mapping_nearby"), user_path(current_user))) %></div>
 <% end %>