%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Team This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. See doc/COPYRIGHT.rdoc for more details. ++#%> <% if issues && issues.any? %> <%= form_tag({}) do %>
# | <%= Issue.human_attribute_name(:project)%> | <%= Issue.human_attribute_name(:tracker)%> | <%= Issue.human_attribute_name(:subject)%> |
---|---|---|---|
<%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %> <%= link_to(h(issue.id), :controller => '/issues', :action => 'show', :id => issue) %> | <%= link_to_project(issue.project) %> | <%=h issue.tracker %> | <%= link_to h(truncate(issue.subject, :length => 60)), :controller => '/issues', :action => 'show', :id => issue %> (<%=h issue.status %>) |
<%= l(:label_no_data) %>
<% end %>