Mercurial > hg > soundsoftware-site
view .svn/pristine/2e/2e6c87fbf008e52f19138f6c4bd2e546325437b5.svn-base @ 1386:e4c393cebb1a luisf
Merger from testing branch.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 24 Sep 2013 16:25:05 +0100 |
parents | 038ba2d95de8 |
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(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 %>