Removed inline styles.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10118 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a0b2ab338e
commit
f8de723c46
|
@ -37,9 +37,9 @@
|
||||||
<% @topics.each do |topic| %>
|
<% @topics.each do |topic| %>
|
||||||
<tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
|
<tr class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
|
||||||
<td class="subject"><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td>
|
<td class="subject"><%= link_to h(topic.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => topic } %></td>
|
||||||
<td class="author" align="center"><%= link_to_user(topic.author) %></td>
|
<td class="author"><%= link_to_user(topic.author) %></td>
|
||||||
<td class="created_on" align="center"><%= format_time(topic.created_on) %></td>
|
<td class="created_on"><%= format_time(topic.created_on) %></td>
|
||||||
<td class="replies" align="center"><%= topic.replies_count %></td>
|
<td class="reply-count"><%= topic.replies_count %></td>
|
||||||
<td class="last_message">
|
<td class="last_message">
|
||||||
<% if topic.last_reply %>
|
<% if topic.last_reply %>
|
||||||
<%= authoring topic.last_reply.created_on, topic.last_reply.author %><br />
|
<%= authoring topic.last_reply.created_on, topic.last_reply.author %><br />
|
||||||
|
|
Loading…
Reference in New Issue