Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issues.html.haml « teams « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4481e2eaa03ef5e411b924c0ea273b9d9512e4c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%h3.page_title
  Issues
  %small (in Team projects assigned to Team members)
  %small.right #{@issues.total_count} issues

%hr
.row
  .span3
    = render 'filter', entity: 'issue'
  .span9
    - if @issues.any?
      - @issues.group_by(&:project).each do |group|
        %div.ui-box
          - @project = group[0]
          %h5.title
            = link_to_project @project
          %ul.well-list.issues_table
            - 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