Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_head.html.haml « commits « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02debe426fefefa84886887b6d840d6bfedfd97c (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
%ul.nav.nav-tabs
  %li= render partial: 'shared/ref_switcher', locals: {destination: 'commits'}

  = nav_link(controller: [:commit, :commits]) do
    = link_to 'Commits', project_commits_path(@project, @repository.root_ref)
  = nav_link(controller: :compare) do
    = link_to 'Compare', project_compare_index_path(@project)

  = nav_link(html_options: {class: branches_tab_class}) do
    = link_to project_repository_path(@project) do
      Branches
      %span.badge= @repository.branches.length

  = nav_link(controller: :repositories, action: :tags) do
    = link_to tags_project_repository_path(@project) do
      Tags
      %span.badge= @repository.tags.length

  = nav_link(controller: :repositories, action: :stats) do
    = link_to stats_project_repository_path(@project) do
      Stats


  - if current_controller?(:commits) && current_user.private_token
    %li.pull-right
      %span.rss-icon
        = link_to project_commits_path(@project, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed" do
          = image_tag "rss_ui.png", title: "feed"