gitlab-org--gitlab-foss/app/views/issues/_issues.html.haml

16 lines
480 B
Plaintext
Raw Normal View History

- @issues.select(&:critical).each do |issue|
= render(:partial => 'issues/show', :locals => {:issue => issue})
2011-10-08 21:36:38 +00:00
- @issues.reject(&:critical).each do |issue|
= render(:partial => 'issues/show', :locals => {:issue => issue})
2012-03-21 22:09:56 +00:00
- if @issues.present?
%li.bottom
.row
.span10= paginate @issues, :remote => true, :theme => "gitlab"
.span4.right
%span.cgray.right #{@issues.total_count} issues for this filter
2012-04-08 21:28:58 +00:00
- else
%li
%p.padded Nothing to show here