2015-04-30 13:06:18 -04:00
|
|
|
- page_title "Issues"
|
2015-04-21 10:31:40 -04:00
|
|
|
= content_for :meta_tags do
|
|
|
|
- if current_user
|
2016-11-03 06:29:37 -04:00
|
|
|
= auto_discovery_link_tag(:atom, url_for(params.merge(format: :atom, private_token: current_user.private_token)), title: "#{@group.name} issues")
|
2015-04-21 10:31:40 -04:00
|
|
|
|
2016-11-05 13:28:29 -04:00
|
|
|
- if group_issues(@group).exists?
|
|
|
|
.top-area
|
|
|
|
= render 'shared/issuable/nav', type: :issues
|
2016-12-02 10:46:50 -05:00
|
|
|
- if current_user
|
|
|
|
.nav-controls
|
2016-12-12 02:02:08 -05:00
|
|
|
= link_to url_for(params.merge(format: :atom, private_token: current_user.private_token)), class: 'btn' do
|
|
|
|
= icon('rss')
|
|
|
|
%span.icon-label
|
|
|
|
Subscribe
|
2016-12-02 10:46:50 -05:00
|
|
|
= render 'shared/new_project_item_select', path: 'issues/new', label: "New Issue"
|
2015-12-02 08:02:12 -05:00
|
|
|
|
2016-11-05 13:28:29 -04:00
|
|
|
= render 'shared/issuable/filter', type: :issues
|
2013-08-15 06:13:22 -04:00
|
|
|
|
2016-11-05 13:28:29 -04:00
|
|
|
.row-content-block.second-block
|
|
|
|
Only issues from the
|
2017-01-13 11:07:21 -05:00
|
|
|
%strong= @group.name
|
2016-11-05 13:28:29 -04:00
|
|
|
group are listed here.
|
|
|
|
- if current_user
|
|
|
|
To see all issues you should visit #{link_to 'dashboard', issues_dashboard_path} page.
|
2015-04-21 10:46:46 -04:00
|
|
|
|
2017-01-26 08:22:16 -05:00
|
|
|
= render 'shared/issues'
|
2016-11-05 13:28:29 -04:00
|
|
|
- else
|
|
|
|
= render 'shared/empty_states/issues', project_select_button: true
|