gitlab-org--gitlab-foss/app/views/commits/_head.html.haml

29 lines
1.1 KiB
Plaintext
Raw Normal View History

2012-04-10 05:51:08 +00:00
%ul.nav.nav-tabs
%li= render partial: 'shared/ref_switcher', locals: {destination: 'commits'}
= nav_link(controller: [:commit, :commits]) do
2013-01-03 19:09:18 +00:00
= 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
2013-01-03 19:09:18 +00:00
%span.badge= @repository.branches.length
= nav_link(controller: :repositories, action: :tags) do
= link_to tags_project_repository_path(@project) do
Tags
2013-01-03 19:09:18 +00:00
%span.badge= @repository.tags.length
2012-02-06 20:32:04 +00:00
2012-11-10 21:08:47 +00:00
= nav_link(controller: :repositories, action: :stats) do
= link_to stats_project_repository_path(@project) do
Stats
2012-09-26 03:39:50 +00:00
- if current_controller?(:commits) && current_user.private_token
2012-02-26 20:06:40 +00:00
%li.right
%span.rss-icon
2012-09-25 23:25:14 +00:00
= 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"