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: 4e3b1e02f1691cd76060d911d91e6db829399f7e (plain)
1
2
3
4
5
6
7
8
9
= render 'shared/alerts/positioning_disabled' if @sort == 'relative_position'

- if @issues.to_a.any?
  %ul.content-list.issues-list.issuable-list{ class: issue_manual_ordering_class, data: { group_full_path: @group&.full_path } }
    = render partial: 'projects/issues/issue', collection: @issues
  = paginate @issues, theme: "gitlab"
- else
  - project_select_button = local_assigns.fetch(:project_select_button, false)
  = render 'shared/empty_states/issues', project_select_button: project_select_button