d62200cad4
* Remove trailing whitespace * Converts hard-tabs into two-space soft-tabs * Remove consecutive blank lines
16 lines
410 B
Plaintext
16 lines
410 B
Plaintext
%table.round-borders#issues-table
|
|
%tr
|
|
- if can?(current_user, :admin_issue, @project) && !params[:f] || params[:f] == "0"
|
|
%th
|
|
%th Assignee
|
|
%th ID
|
|
%th Title
|
|
%th Closed?
|
|
%th
|
|
|
|
- @issues.critical.each do |issue|
|
|
= render(:partial => 'show', :locals => {:issue => issue})
|
|
|
|
- @issues.non_critical.each do |issue|
|
|
= render(:partial => 'show', :locals => {:issue => issue})
|