summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/index.html.haml
blob: c493ff3585b468b31d2a7d0e20375e4f56372b5a (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
- @no_container = true
- @bulk_edit = can?(current_user, :admin_issue, @project)

- page_title "Issues"
- new_issue_email = @project.new_issue_address(current_user)
= content_for :sub_nav do
  = render "projects/issues/head"

= 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")

%div{ class: (container_class) }
  - if @project.issues.any?
    .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' do
            = icon('rss')
            %span.icon-label
              Subscribe
        = render 'shared/issuable/search_form', path: namespace_project_issues_path(@project.namespace, @project)
        - 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
            New Issue
    = render 'shared/issuable/filter', type: :issues

    .issues-holder
      = render 'issues'
      - if new_issue_email
        = render 'issue_by_email', email: new_issue_email
  - else
    .blank-state.blank-state-welcome
      %h2.blank-state-title.blank-state-welcome-title
        Welcome to GitLab Issues
      %p.blank-state-text
        Code, test, and deploy together
    .blank-state
      .blank-state-icon
        = custom_icon("issues", size: 50)
      %h3.blank-state-title
        You don't have any issues right now.
      %p.blank-state-text
        Issues are the best way to track your project progress
      - if can? current_user, :create_issue, @project
        = link_to new_namespace_project_issue_path(@project.namespace, @project), class: "btn btn-new", title: "New Issue", id: "new_issue_link" do
          New Issue
        - if new_issue_email
          = render 'issue_by_email', email: new_issue_email