issues.html.haml 613 Bytes
Newer Older
randx's avatar
randx committed
1
%h3.page_title
2
  Issues
3
  %small (assigned to you)
4
  %small.pull-right #{@issues.total_count} issues
5

6 7 8 9 10 11 12 13 14
%hr

.row
  .span3
    = render 'filter', entity: 'issue'
  .span9
    - if @issues.any?
      - @issues.group_by(&:project).each do |group|
        %div.ui-box
15
          - project = group[0]
16
          %h5.title
17
            = link_to_project project
18
          %ul.well-list.issues_table
19 20 21 22 23 24
            - group[1].each do |issue|
              = render(partial: 'issues/show', locals: {issue: issue})
      %hr
      = paginate @issues, theme: "gitlab"
    - else
      %p.nothing_here_message Nothing to show here