summaryrefslogtreecommitdiff
path: root/app/views/shared/_issues.html.haml
blob: 33f8f5f4ad1c9255c44ac6207d0a1f4e417f3644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- if @issues.any?
  - @issues.group_by(&:project).each do |group|
    %div.ui-box
      - project = group[0]
      .title
        = link_to_project project
         
        %i.icon-angle-right
         
        = link_to 'issues', project_issues_path(project)

      %ul.well-list.issues-list
        - group[1].each do |issue|
          = render 'projects/issues/issue', issue: issue
  %hr
  = paginate @issues, theme: "gitlab"
- else
  %p.nothing_here_message Nothing to show here