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