]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/message/inbox.html.erb
Make sure we show errors correctly when resetting a password
[rails.git] / app / views / message / inbox.html.erb
index 0cbc7c77c4748365b9b06075c2e4daf6668ed6ff..919a3e4023c132a3476b661fe89a9e1d423cf5d5 100644 (file)
@@ -1,21 +1,24 @@
-<h2><%= t'message.inbox.my_inbox'%>/<%= link_to t('message.inbox.outbox'), outbox_path(@user.display_name) %></h2>
+<% content_for :heading do %>
+  <h2><%= t'message.inbox.my_inbox'%>/<%= link_to t('message.inbox.outbox'), outbox_path(current_user.display_name) %></h2>
+<% end %>
 
-<%= render :partial => "message_count" %>
+  <h4><%= render :partial => "message_count" %></h4>
 
-<% if @user.messages.size > 0 %>
-  <div id="messages">
-    <table class="messages">
+<% if current_user.messages.size > 0 %>
+  <table class="messages">
+    <thead>
       <tr>
         <th><%= t'message.inbox.from' %></th>
         <th><%= t'message.inbox.subject' %></th>
         <th><%= t'message.inbox.date' %></th>
         <th></th>
         <th></th>
-        <th></th>
       </tr>
-      <%= render :partial => "message_summary", :collection => @user.messages %>
-    </table>
-  </div>
+    </thead>
+    <tbody>
+        <%= render :partial => "message_summary", :collection => current_user.messages %>
+    </tbody>
+  </table>
 <% else %>
-  <div id="messages"><%= raw(t'message.inbox.no_messages_yet', :people_mapping_nearby_link => link_to(t('message.inbox.people_mapping_nearby'), :controller => 'user', :action => 'view', :display_name => @user.display_name)) %></div>
+  <div><%= raw(t'message.inbox.no_messages_yet', :people_mapping_nearby_link => link_to(t('message.inbox.people_mapping_nearby'), :controller => 'user', :action => 'view', :display_name => current_user.display_name)) %></div>
 <% end %>