adds support for user level-dependent classes

all links to users should have their class attribute set to that user's
level_class
This commit is contained in:
Toks
2013-03-30 10:31:20 -04:00
parent eed6ece3ec
commit 4f42ab8bdb
16 changed files with 24 additions and 24 deletions

View File

@@ -16,7 +16,7 @@
<% @notes.each do |note| %>
<tr>
<td><%= link_to note.post_id, post_path(note.post_id) %></td>
<td><%= link_to note.creator.name, user_path(note.creator_id) %></td>
<td><%= link_to note.creator.name, user_path(note.creator_id), { :class => note.creator.level_class } %></td>
<td><%= compact_time(note.created_at) %></td>
<td><%= note.is_active? %></td>
<td><%= format_text(note.body) %></td>