gitlab-org--gitlab-foss/app/views/projects/issues/index.html.haml

41 lines
1.8 KiB
Text
Raw Normal View History

- @no_container = true
- @bulk_edit = can?(current_user, :admin_issue, @project)
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)
= content_for :sub_nav do
= render "projects/issues/head"
2016-11-04 17:27:11 -04:00
- content_for :page_specific_javascripts do
= page_specific_javascript_tag('filtered_search/filtered_search_bundle.js')
= content_for :meta_tags do
- if current_user
= auto_discovery_link_tag(:atom, url_for(params.merge(format: :atom, private_token: current_user.private_token)), title: "#{@project.name} issues")
- 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
.nav-controls
- if current_user
= link_to url_for(params.merge(format: :atom, private_token: current_user.private_token)), class: 'btn append-right-10', title: 'Subscribe' do
2016-06-24 11:37:49 -04:00
= icon('rss')
- if can? current_user, :create_issue, @project
= link_to new_namespace_project_issue_path(@project.namespace,
@project,
issue: { assignee_id: issues_finder.assignee.try(:id),
milestone_id: issues_finder.milestones.first.try(:id) }),
class: "btn btn-new",
title: "New Issue",
id: "new_issue_link" do
2016-06-24 11:37:49 -04:00
New Issue
= render 'shared/issuable/search_bar', type: :issues
2016-06-24 11:37:49 -04:00
.issues-holder
= render 'issues'
- if new_issue_email
= render 'issue_by_email', email: new_issue_email
- else
= render 'shared/empty_states/issues', button_path: new_namespace_project_issue_path(@project.namespace, @project)