]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/message/_sent_message_summary.html.erb
Remove hard coded assumption that layer zero is mapnik
[rails.git] / app / views / message / _sent_message_summary.html.erb
index a03074e0838fa9f93793cef8ac8606cf4a9dccd9..962cf0a5d1e3e4529376230cb63df865ce823c20 100644 (file)
@@ -1,8 +1,6 @@
-<% this_colour = cycle('lightgrey', 'white') # can only call once for some dumb reason
-%>
-
 <tr class="inbox-row">
-  <td class="inbox-sender" bgcolor="<%= this_colour %>"><%= link_to h(sent_message_summary.recipient.display_name), :controller => 'user', :action => sent_message_summary.recipient.display_name %></td>
-  <td class="inbox-subject" bgcolor="<%= this_colour %>"><%= link_to h(sent_message_summary.title), :controller => 'message', :action => 'read', :message_id => sent_message_summary.id  %></td>
-  <td class="inbox-sent" bgcolor="<%= this_colour %>"><%= l sent_message_summary.sent_on %></td>
+  <td class="inbox-sender"><%= link_to h(sent_message_summary.recipient.display_name), :controller => 'user', :action => 'view', :display_name => sent_message_summary.recipient.display_name %></td>
+  <td class="inbox-subject"><%= link_to h(sent_message_summary.title), :controller => 'message', :action => 'read', :message_id => sent_message_summary.id  %></td>
+  <td class="inbox-sent nowrap"><%= l sent_message_summary.sent_on, :format => :friendly %></td>
+  <td><%= button_to t('message.sent_message_summary.delete_button'), :controller => 'message', :action => 'delete', :message_id => sent_message_summary.id, :referer => request.fullpath %></td>
 </tr>