_list_simple.rhtml
24 lines
| 876 B
| text/html+ruby
|
RhtmlLexer
|
r330 | <% if issues.length > 0 %> | |
<table class="list"> | |||
<thead><tr> | |||
<th>#</th> | |||
<th><%=l(:field_tracker)%></th> | |||
<th><%=l(:field_subject)%></th> | |||
</tr></thead> | |||
<tbody> | |||
|
r12 | <% for issue in issues %> | |
|
r916 | <tr id="issue-<%= issue.id %>" class="issue hascontextmenu <%= cycle('odd', 'even') %> <%= "status-#{issue.status.position} priority-#{issue.priority.position}" %>"> | |
|
r797 | <td class="id"> | |
|
r330 | <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %> | |
|
r797 | </td> | |
|
r936 | <td><%=h issue.project.name %> - <%= issue.tracker.name %><br /> | |
|
r916 | <%= issue.status.name %> - <%= format_time(issue.updated_on) %></td> | |
<td class="subject"> | |||
<%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %> | |||
|
r12 | </td> | |
</tr> | |||
|
r330 | <% end %> | |
|
r105 | </tbody> | |
|
r330 | </table> | |
<% else %> | |||
<i><%=l(:label_no_data)%></i> | |||
|
r2 | <% end %> |