debian-mirror-gitlab/app/views/groups/issues.html.haml

39 lines
1.3 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Issues"
2017-09-10 17:25:29 +05:30
- group_issues_exists = group_issues(@group).exists?
2017-08-17 22:00:37 +05:30
= render "head_issues"
2015-09-11 14:41:01 +05:30
= content_for :meta_tags do
2017-08-17 22:00:37 +05:30
= auto_discovery_link_tag(:atom, params.merge(rss_url_options), title: "#{@group.name} issues")
2015-09-11 14:41:01 +05:30
2017-09-10 17:25:29 +05:30
- content_for :page_specific_javascripts do
= webpack_bundle_tag 'common_vue'
= webpack_bundle_tag 'filtered_search'
- if show_new_nav? && group_issues_exists
- content_for :breadcrumbs_extra do
= link_to params.merge(rss_url_options), class: 'btn btn-default append-right-10' do
= icon('rss')
= render 'shared/new_project_item_select', path: 'issues/new', label: "New issue"
- if group_issues_exists
2017-08-17 22:00:37 +05:30
.top-area
= render 'shared/issuable/nav', type: :issues
2017-09-10 17:25:29 +05:30
.nav-controls{ class: ("visible-xs" if show_new_nav?) }
2017-08-17 22:00:37 +05:30
= link_to params.merge(rss_url_options), class: 'btn' do
2016-04-02 18:10:28 +05:30
= icon('rss')
2016-06-02 11:05:42 +05:30
%span.icon-label
Subscribe
2017-08-17 22:00:37 +05:30
= render 'shared/new_project_item_select', path: 'issues/new', label: "New issue"
2015-12-23 02:04:40 +05:30
2017-09-10 17:25:29 +05:30
= render 'shared/issuable/search_bar', type: :issues
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
.row-content-block.second-block
Only issues from the
%strong= @group.name
group are listed here.
- if current_user
To see all issues you should visit #{link_to 'dashboard', issues_dashboard_path} page.
2015-09-11 14:41:01 +05:30
2015-09-25 12:07:36 +05:30
= render 'shared/issues'
2017-08-17 22:00:37 +05:30
- else
= render 'shared/empty_states/issues', project_select_button: true