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

_head.html.haml « commits « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcccb002d7e8d482f5358ae34bfc459304fae546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%ul.center-top-menu
  = nav_link(controller: [:commit, :commits]) do
    = link_to namespace_project_commits_path(@project.namespace, @project, current_ref) do
      Commits
      %span.badge= number_with_delimiter(@repository.commit_count)

  = nav_link(controller: %w(network)) do
    = link_to namespace_project_network_path(@project.namespace, @project, current_ref) do
      Network

  = nav_link(controller: :compare) do
    = link_to namespace_project_compare_index_path(@project.namespace, @project, from: @repository.root_ref, to: current_ref) do
      Compare

  = nav_link(html_options: {class: branches_tab_class}) do
    = link_to namespace_project_branches_path(@project.namespace, @project) do
      Branches
      %span.badge.js-totalbranch-count= @repository.branches.size

  = nav_link(controller: [:tags, :releases]) do
    = link_to namespace_project_tags_path(@project.namespace, @project) do
      Tags
      %span.badge.js-totaltags-count= @repository.tags.length