Mercurial > hg > soundsoftware-site
view .svn/pristine/78/7828cc0008d3db898fec05425bedf18d84ff5098.svn-base @ 1459:cf78a7ade302 luisf
Merge from branch "bug_794"
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 11 Nov 2013 18:25:50 +0000 |
parents | cbb26bc654de |
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;') %> <%= link_to(h(issue.id), :controller => 'issues', :action => 'show', :id => issue) %> </td> <td class="project"><%= link_to_project(issue.project) %></td> <td class="tracker"><%=h issue.tracker %></td> <td class="subject"> <%= link_to h(truncate(issue.subject, :length => 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>) </td> </tr> <% end %> </tbody> </table> <% end %> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> <% end %>