##// END OF EJS Templates
Subproject name displayed on issue list, calendar and gantt (only for issues that belong to a subproject)....
Subproject name displayed on issue list, calendar and gantt (only for issues that belong to a subproject). git-svn-id: http://redmine.rubyforge.org/svn/trunk@484 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r402:568c22016ad3
r481:c1a18a28898f
Show More
_list_simple.rhtml
24 lines | 859 B | text/html+ruby | RhtmlLexer
<% if issues.length > 0 %>
<table class="list">
<thead><tr>
<th>#</th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
</tr></thead>
<tbody>
<% for issue in issues %>
<tr class="<%= cycle("odd", "even") %>">
<th align="center">
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
</th>
<td><div class="square" style="background:#<%= issue.status.html_color %>;"></div> <p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
<%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
<td>
<p class="small"><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></p>
</td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<i><%=l(:label_no_data)%></i>
<% end %>