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-09-26 16:14:17 -04: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 01:37:27 +03:00
|
|
|
= link_to project_repository_path(@project) do
|
2012-02-20 08:39:03 +02:00
|
|
|
Branches
|
2012-10-02 18:42:39 -04:00
|
|
|
%span.badge= @project.branches.length
|
2012-02-20 08:39:03 +02:00
|
|
|
|
2012-09-26 16:14:17 -04:00
|
|
|
= nav_link(controller: :repositories, action: :tags) do
|
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-10-02 18:42:39 -04:00
|
|
|
%span.badge= @project.tags.length
|
2012-02-06 22:32:04 +02:00
|
|
|
|
2012-09-25 23:39:50 -04:00
|
|
|
- if current_controller?(:commits) && current_user.private_token
|
2012-02-26 22:06:40 +02:00
|
|
|
%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"
|