##// END OF EJS Templates
Removed inline styles....
Jean-Philippe Lang -
r9935:f8de723c468f
parent child
Show More
@@ -37,9 +37,9
37 <% @topics.each do |topic| %>
37 <% @topics.each do |topic| %>
38 <tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
38 <tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
39 <td class="subject"><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td>
39 <td class="subject"><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td>
40 <td class="author" align="center"><%= link_to_user(topic.author) %></td>
40 <td class="author"><%= link_to_user(topic.author) %></td>
41 <td class="created_on" align="center"><%= format_time(topic.created_on) %></td>
41 <td class="created_on"><%= format_time(topic.created_on) %></td>
42 <td class="replies" align="center"><%= topic.replies_count %></td>
42 <td class="reply-count"><%= topic.replies_count %></td>
43 <td class="last_message">
43 <td class="last_message">
44 <% if topic.last_reply %>
44 <% if topic.last_reply %>
45 <%= authoring topic.last_reply.created_on, topic.last_reply.author %><br />
45 <%= authoring topic.last_reply.created_on, topic.last_reply.author %><br />
General Comments 0
You need to be logged in to leave comments. Login now