]> git.openstreetmap.org Git - rails.git/blob - app/views/message/_message_summary.rhtml
Half the user view translated.
[rails.git] / app / views / message / _message_summary.rhtml
1 <% this_colour = cycle('lightgrey', 'white') # can only call once for some dumb reason 
2 %>
3
4 <tr class="inbox-row<%= "-unread" if not message_summary.message_read? %>">
5   <td class="inbox-sender" bgcolor="<%= this_colour %>"><%= link_to h(message_summary.sender.display_name), :controller => 'user', :action => message_summary.sender.display_name %></td>
6   <td class="inbox-subject" bgcolor="<%= this_colour %>"><%= link_to h(message_summary.title), :controller => 'message', :action => 'read', :message_id => message_summary.id  %></td>
7   <td class="inbox-sent" bgcolor="<%= this_colour %>"><%= message_summary.sent_on %></td>
8   <% if message_summary.message_read? %>
9     <td><%= button_to 'Mark as unread', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'unread' %></td>
10   <% else %>
11     <td><%= button_to 'Mark as read', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'read' %></td>
12   <% end %>
13   <td><%= button_to 'Reply', :controller => 'message', :action => 'reply', :message_id => message_summary.id %></td>
14 </tr>