_issues.html.haml 479 Bytes
Newer Older
1
- @issues.select(&:critical).each do |issue|
Ariejan de Vroom's avatar
Ariejan de Vroom committed
2
  = render(:partial => 'issues/show', :locals => {:issue => issue})
gitlabhq's avatar
gitlabhq committed
3

4
- @issues.reject(&:critical).each do |issue|
Ariejan de Vroom's avatar
Ariejan de Vroom committed
5
  = render(:partial => 'issues/show', :locals => {:issue => issue})
randx's avatar
randx committed
6

7 8 9
- if @issues.present?
  %li.bottom
    .row
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
10 11
      .span7= paginate @issues, :remote => true, :theme => "gitlab"
      .span3.right
12
        %span.cgray.right #{@issues.total_count} issues for this filter
13 14 15
- else
  %li
    %p.padded Nothing to show here