% 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 %>