2012-04-10 07:51:08 +02:00
|
|
|
%ul.nav.nav-tabs
|
2012-09-16 18:07:57 +02:00
|
|
|
%li= render partial: 'shared/ref_switcher', locals: {destination: 'commits'}
|
2012-09-26 22:14:17 +02:00
|
|
|
|
|
|
|
= nav_link(controller: [:commit, :commits]) do
|
|
|
|
= link_to 'Commits', project_commits_path(@project, @project.root_ref)
|
|
|
|
= nav_link(controller: :compare) do
|
|
|
|
= link_to 'Compare', project_compare_index_path(@project)
|
|
|
|
|
|
|
|
= nav_link(html_options: {class: branches_tab_class}) do
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to project_repository_path(@project) do
|
2012-02-20 07:39:03 +01:00
|
|
|
Branches
|
2012-07-16 07:03:10 +02:00
|
|
|
%span.badge= @project.repo.branch_count
|
2012-02-20 07:39:03 +01:00
|
|
|
|
2012-09-26 22:14:17 +02:00
|
|
|
= nav_link(controller: :repositories, action: :tags) do
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to tags_project_repository_path(@project) do
|
2012-02-20 07:39:03 +01:00
|
|
|
Tags
|
2012-07-16 07:03:10 +02:00
|
|
|
%span.badge= @project.repo.tag_count
|
2012-02-06 21:32:04 +01:00
|
|
|
|
2012-09-26 05:39:50 +02:00
|
|
|
- if current_controller?(:commits) && current_user.private_token
|
2012-02-26 21:06:40 +01:00
|
|
|
%li.right
|
2012-05-27 00:09:44 +02:00
|
|
|
%span.rss-icon
|
2012-09-26 01:25:14 +02:00
|
|
|
= link_to project_commits_path(@project, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed" do
|
2012-08-11 00:07:50 +02:00
|
|
|
= image_tag "rss_ui.png", title: "feed"
|