2016-06-10 09:17:28 -04:00
|
|
|
- @no_container = true
|
2017-05-15 18:12:43 -04:00
|
|
|
- @can_bulk_update = can?(current_user, :admin_issue, @project)
|
2016-09-06 08:49:49 -04:00
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
- page_title "Issues"
|
2016-06-30 05:08:14 -04:00
|
|
|
- new_issue_email = @project.new_issue_address(current_user)
|
2016-09-29 11:54:45 -04:00
|
|
|
= content_for :sub_nav do
|
|
|
|
= render "projects/issues/head"
|
2015-09-17 06:16:24 -04:00
|
|
|
|
2016-11-04 17:27:11 -04:00
|
|
|
- content_for :page_specific_javascripts do
|
2017-05-10 17:11:23 -04:00
|
|
|
= webpack_bundle_tag 'common_vue'
|
|
|
|
= webpack_bundle_tag 'filtered_search'
|
2016-11-04 17:27:11 -04:00
|
|
|
|
2015-04-21 10:31:40 -04:00
|
|
|
= content_for :meta_tags do
|
2017-02-28 15:50:57 -05:00
|
|
|
= auto_discovery_link_tag(:atom, params.merge(rss_url_options), title: "#{@project.name} issues")
|
2015-04-21 10:31:40 -04:00
|
|
|
|
2017-06-30 12:52:11 -04:00
|
|
|
- if show_new_nav?
|
|
|
|
- content_for :breadcrumbs_extra do
|
|
|
|
= render "projects/issues/nav_btns"
|
|
|
|
|
2016-11-05 13:28:29 -04:00
|
|
|
- if project_issues(@project).exists?
|
|
|
|
%div{ class: (container_class) }
|
2016-06-24 11:37:49 -04:00
|
|
|
.top-area
|
|
|
|
= render 'shared/issuable/nav', type: :issues
|
2017-06-30 12:52:11 -04:00
|
|
|
.nav-controls{ class: ("visible-xs" if show_new_nav?) }
|
|
|
|
= render "projects/issues/nav_btns"
|
2016-12-19 01:32:42 -05:00
|
|
|
= render 'shared/issuable/search_bar', type: :issues
|
2016-06-24 11:37:49 -04:00
|
|
|
|
2017-05-15 18:12:43 -04:00
|
|
|
- if @can_bulk_update
|
|
|
|
= render 'shared/issuable/bulk_update_sidebar', type: :issues
|
|
|
|
|
2016-09-07 10:45:31 -04:00
|
|
|
.issues-holder
|
2016-07-27 06:07:11 -04:00
|
|
|
= render 'issues'
|
2016-07-26 04:19:37 -04:00
|
|
|
- if new_issue_email
|
2016-07-27 06:07:11 -04:00
|
|
|
= render 'issue_by_email', email: new_issue_email
|
2016-11-05 13:28:29 -04:00
|
|
|
- else
|
2017-06-29 13:06:35 -04:00
|
|
|
= render 'shared/empty_states/issues', button_path: new_project_issue_path(@project)
|