Mercurial > hg > soundsoftware-site
view app/views/issues/_list_simple.html.erb @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | 261b3d9a4903 |
children |
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"><%= issue.tracker %></td> <td class="subject"> <%= link_to(issue.subject.truncate(60), issue_path(issue)) %> (<%= issue.status %>) </td> </tr> <% end %> </tbody> </table> <% end %> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> <% end %>