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

index.html.haml « issues « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b730eb5072e21a7a41cffd13aabdad65deb99ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- page_title _('Issues')
- add_page_specific_style 'page_bundles/issues_list'
= content_for :meta_tags do
  = auto_discovery_link_tag(:atom, safe_params.merge(rss_url_options).to_h, title: "#{@project.name} issues")

.js-jira-issues-import-status{ data: { can_edit: can?(current_user, :admin_project, @project).to_s,
  is_jira_configured: @project.jira_integration.present?.to_s,
  issues_path: project_issues_path(@project),
  project_path: @project.full_path } }

.js-issues-list{ data: project_issues_list_data(@project, current_user) }
- if can?(current_user, :admin_issue, @project)
  = render 'shared/issuable/bulk_update_sidebar', type: :issues