##// END OF EJS Templates
tr color removed on issues list...
Jean-Philippe Lang -
r63:b3be8745b09a
parent child
Show More
@@ -8,8 +8,8
8 <th><%=l(:field_subject)%></th>
8 <th><%=l(:field_subject)%></th>
9 </tr>
9 </tr>
10 <% for issue in issues %>
10 <% for issue in issues %>
11 <tr bgcolor="#<%= issue.status.html_color %>">
11 <tr class="<%= cycle("odd", "even") %>">
12 <td align="center">
12 <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;">
13 <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %><br />
13 <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %><br />
14 </td>
14 </td>
15 <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
15 <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
@@ -56,10 +56,10
56 <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
56 <%= sort_header_tag('issues.updated_on', :caption => l(:field_updated_on)) %>
57 </tr>
57 </tr>
58 <% for issue in @issues %>
58 <% for issue in @issues %>
59 <tr bgcolor="#<%= issue.status.html_color %>">
59 <tr class="<%= cycle("odd", "even") %>">
60 <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td>
60 <td width="15"><%= check_box_tag "issue_ids[]", issue.id %></td>
61 <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td>
61 <td align="center"><%= link_to issue.long_id, :controller => 'issues', :action => 'show', :id => issue %></td>
62 <td align="center"><%= issue.status.name %></td>
62 <td align="center" style="font-weight:bold;color:#<%= issue.status.html_color %>;"><%= issue.status.name %></font></td>
63 <td align="center"><%= issue.tracker.name %></td>
63 <td align="center"><%= issue.tracker.name %></td>
64 <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td>
64 <td><%= link_to issue.subject, :controller => 'issues', :action => 'show', :id => issue %></td>
65 <td align="center"><%= issue.author.display_name %></td>
65 <td align="center"><%= issue.author.display_name %></td>
General Comments 0
You need to be logged in to leave comments. Login now