Mercurial > hg > soundsoftware-site
view app/views/issues/_list_simple.html.erb @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | 433d4f72a19b |
children | dffacf8a6908 |
line wrap: on
line source
<% if issues && issues.any? %> <%= form_tag({}) do %> <table class="list issues"> <thead><tr> <th>#</th> <th><%=l(:field_project)%></th> <th><%=l(:field_tracker)%></th> <th><%=l(:field_subject)%></th> </tr></thead> <tbody> <% for issue in issues %> <tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %>"> <td class="id"> <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %> <%= link_to issue.id, issue_path(issue) %> </td> <td class="project"><%= link_to_project(issue.project) %></td> <td class="tracker"><%=h issue.tracker %></td> <td class="subject"> <%= link_to truncate(issue.subject, :length => 60), issue_path(issue) %> (<%=h issue.status %>) </td> </tr> <% end %> </tbody> </table> <% end %> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> <% end %>