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: f8f57934303899d35e9ac8febd3f6e2ae4c59b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- page_title _('Issues')
- add_page_specific_style 'page_bundles/issuable_list'
- 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-root{ 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-root{ data: project_issues_list_data(@project, current_user) }
- if can?(current_user, :admin_issue, @project)
  = render 'shared/issuable/bulk_update_sidebar', type: :issues