Moving inbox styling definitions into the stylesheet.
This commit is contained in:
parent
3c79240a6a
commit
9da455a322
2 changed files with 569 additions and 566 deletions
|
@ -1,9 +1,7 @@
|
|||
<tr>
|
||||
<td><%= link_to message_summary.sender.display_name , :controller => 'user', :action => message_summary.sender.display_name %></td>
|
||||
<td><%= "<b>" if not message_summary.message_read? %>
|
||||
<%= link_to message_summary.title , :controller => 'message', :action => 'read', :message_id => message_summary.id %>
|
||||
<%= "</b>" if not message_summary.message_read? %></td>
|
||||
<td><%= message_summary.sent_on %></td>
|
||||
<tr class="inbox-row<%= "-unread" if not message_summary.message_read? %>">
|
||||
<td class="inbox-sender"><%= link_to message_summary.sender.display_name , :controller => 'user', :action => message_summary.sender.display_name %></td>
|
||||
<td class="inbox-subject"><%= link_to message_summary.title , :controller => 'message', :action => 'read', :message_id => message_summary.id %></td>
|
||||
<td class="inbox-sent"><%= message_summary.sent_on %></td>
|
||||
<% if message_summary.message_read? %>
|
||||
<td><%= button_to 'Mark as unread', :controller => 'message', :action => 'mark', :message_id => message_summary.id, :mark => 'unread' %></td>
|
||||
<% else %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue