2007-03-12 20:59:02 +03:00
|
|
|
<% if issues.length > 0 %>
|
|
|
|
<table class="list">
|
|
|
|
<thead><tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th><%=l(:field_tracker)%></th>
|
|
|
|
<th><%=l(:field_subject)%></th>
|
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
2006-07-29 23:54:22 +04:00
|
|
|
<% for issue in issues %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<tr class="<%= cycle("odd", "even") %>">
|
|
|
|
<th align="center">
|
|
|
|
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
|
|
|
|
</th>
|
2007-04-03 00:24:02 +04:00
|
|
|
<td><div class="square" style="background:#<%= issue.status.html_color %>;"></div> <p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
|
2007-03-12 20:59:02 +03:00
|
|
|
<%= 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>
|
2006-07-29 23:54:22 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% end %>
|
2006-12-24 19:35:25 +03:00
|
|
|
</tbody>
|
2007-03-12 20:59:02 +03:00
|
|
|
</table>
|
|
|
|
<% else %>
|
|
|
|
<i><%=l(:label_no_data)%></i>
|
2006-06-28 22:11:03 +04:00
|
|
|
<% end %>
|