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

issues.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5293f685d06b19f8c7f6777a65b92c6f554084b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
- @hide_top_links = true
- page_title _("Issues")
- @breadcrumb_link = issues_dashboard_path(assignee_username: current_user.username)
- add_page_specific_style 'page_bundles/issuable_list'
- add_page_specific_style 'page_bundles/dashboard'
= content_for :meta_tags do
  = auto_discovery_link_tag(:atom, safe_params.merge(rss_url_options).to_h, title: "#{current_user.name} issues")

= render_dashboard_ultimate_trial(current_user)

.page-title-holder.d-flex.align-items-center
  %h1.page-title.gl-font-size-h-display= _('Issues')

  - if current_user
    .page-title-controls
      = render 'shared/new_project_item_select', path: 'issues/new', label: _("issue"), with_feature_enabled: 'issues', type: :issues

- if ::Feature.enabled?(:vue_issues_dashboard)
  .js-issues-dashboard{ data: dashboard_issues_list_data(current_user) }
- else
  .top-area
    = render 'shared/issuable/nav', type: :issues, display_count: !@no_filters_set
    .nav-controls
      = render 'shared/issuable/feed_buttons'

  = render 'shared/issuable/search_bar', type: :issues

  - if current_user && @no_filters_set
    = render 'shared/dashboard/no_filter_selected'
  - else
    = render 'shared/issues'