BigW Consortium Gitlab

_project.html.haml 4.6 KB
Newer Older
1
- can_edit = can?(current_user, :admin_project, @project)
2 3
.scrolling-tabs-container{ class: nav_control_class }
  .fade-left
4
    = icon('angle-left')
5
  .fade-right
6
    = icon('angle-right')
7
  %ul.nav-links.scrolling-tabs
8
    = nav_link(path: ['projects#show', 'projects#activity', 'cycle_analytics#show'], html_options: { class: 'home' }) do
9
      = link_to project_path(@project), title: 'Project', class: 'shortcuts-project' do
10
        %span
11
          Project
12

13
    - if project_nav_tab? :files
14
      = nav_link(controller: %w(tree blob blame edit_tree new_tree find_file commit commits compare repositories tags branches releases graphs network)) do
Stan Hu committed
15
        = link_to project_files_path(@project), title: 'Repository',  class: 'shortcuts-tree' do
16
          %span
Stan Hu committed
17
            Repository
Kamil Trzcinski committed
18

19 20 21 22
    - if project_nav_tab? :container_registry
      = nav_link(controller: %w(container_registry)) do
        = link_to project_container_registry_path(@project), title: 'Container Registry', class: 'shortcuts-container-registry' do
          %span
23
            Registry
24

25
    - if project_nav_tab? :issues
26
      = nav_link(controller: [:issues, :labels, :milestones, :boards]) do
27
        = link_to namespace_project_issues_path(@project.namespace, @project), title: 'Issues', class: 'shortcuts-issues' do
28 29 30
          %span
            Issues
            - if @project.default_issues_tracker?
31
              %span.badge.count.issue_counter= number_with_delimiter(IssuesFinder.new(current_user, project_id: @project.id).execute.opened.count)
32

33 34 35 36 37
    - if project_nav_tab? :merge_requests
      = nav_link(controller: :merge_requests) do
        = link_to namespace_project_merge_requests_path(@project.namespace, @project), title: 'Merge Requests', class: 'shortcuts-merge_requests' do
          %span
            Merge Requests
38
            %span.badge.count.merge_counter= number_with_delimiter(MergeRequestsFinder.new(current_user, project_id: @project.id).execute.opened.count)
39

40 41 42 43 44 45
    - if project_nav_tab? :pipelines
      = nav_link(controller: [:pipelines, :builds, :environments]) do
        = link_to project_pipelines_path(@project), title: 'Pipelines', class: 'shortcuts-pipelines' do
          %span
            Pipelines

46 47 48 49 50 51 52 53 54 55 56 57
    - if project_nav_tab? :wiki
      = nav_link(controller: :wikis) do
        = link_to get_project_wiki_path(@project), title: 'Wiki', class: 'shortcuts-wiki' do
          %span
            Wiki

    - if project_nav_tab? :snippets
      = nav_link(controller: :snippets) do
        = link_to namespace_project_snippets_path(@project.namespace, @project), title: 'Snippets', class: 'shortcuts-snippets' do
          %span
            Snippets

58
    - if project_nav_tab? :settings
59
      = nav_link(path: %w[projects#edit members#show integrations#show repository#show ci_cd#show pages#show]) do
60 61 62 63 64 65 66 67
        = link_to edit_project_path(@project), title: 'Settings', class: 'shortcuts-tree' do
          %span
            Settings
    - else
      = nav_link(path: %w[members#show]) do
        = link_to namespace_project_settings_members_path(@project.namespace, @project), title: 'Settings', class: 'shortcuts-tree' do
          %span
            Settings
68

69 70 71 72 73 74 75
    -# Shortcut to Project > Activity
    %li.hidden
      = link_to activity_project_path(@project), title: 'Activity', class: 'shortcuts-project-activity' do
        %span
          Activity

    -# Shortcut to Repository > Graph (formerly, Network)
76 77 78
    - if project_nav_tab? :network
      %li.hidden
        = link_to namespace_project_network_path(@project.namespace, @project, current_ref), title: 'Network', class: 'shortcuts-network' do
79 80 81 82 83 84 85
          Graph

    -# Shortcut to Repository > Charts (formerly, top-nav item "Graphs")
    - unless @project.empty_repo?
      %li.hidden
        = link_to charts_namespace_project_graph_path(@project.namespace, @project, current_ref), title: 'Charts', class: 'shortcuts-repository-charts' do
          Charts
86

87
    -# Shortcut to Issues > New Issue
88
    %li.hidden
89 90
      = link_to new_namespace_project_issue_path(@project.namespace, @project), class: 'shortcuts-new-issue' do
        Create a new issue
91

92
    -# Shortcut to Pipelines > Jobs
93 94
    - if project_nav_tab? :builds
      %li.hidden
Filipa Lacerda committed
95 96
        = link_to project_builds_path(@project), title: 'Jobs', class: 'shortcuts-builds' do
          Jobs
97

98 99 100 101 102
    -# Shortcut to commits page
    - if project_nav_tab? :commits
      %li.hidden
        = link_to project_commits_path(@project), title: 'Commits', class: 'shortcuts-commits' do
          Commits
103 104 105

    -# Shortcut to issue boards
    %li.hidden
106
      = link_to 'Issue Boards', namespace_project_boards_path(@project.namespace, @project), title: 'Issue Boards', class: 'shortcuts-issue-boards'