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

_issues.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dbb6a04393720ada519a3b81d158f1a6e7f6b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- if @issues.any?
  - @issues.group_by(&:project).each do |group|
    .panel.panel-default.panel-small
      - project = group[0]
      .panel-heading
        = link_to_project project
        = link_to 'show all', namespace_project_issues_path(project.namespace, project), class: 'pull-right'

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