2012-04-10 07:51:08 +02:00
|
|
|
%ul.nav.nav-tabs
|
2012-02-06 21:32:04 +01:00
|
|
|
%li
|
2012-08-11 00:07:50 +02:00
|
|
|
= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
|
2012-09-10 08:09:55 +02:00
|
|
|
= select_tag "ref", grouped_options_refs, onchange: "$(this.form).trigger('submit');", class: "project-refs-select chosen"
|
2012-02-06 21:32:04 +01:00
|
|
|
= hidden_field_tag :destination, "commits"
|
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
%li{class: "#{'active' if current_page?(project_commits_path(@project)) }"}
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to project_commits_path(@project) do
|
2012-02-06 21:32:04 +01:00
|
|
|
Commits
|
2012-08-11 00:07:50 +02:00
|
|
|
%li{class: "#{'active' if current_page?(compare_project_commits_path(@project)) }"}
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to compare_project_commits_path(@project) do
|
2012-02-06 21:32:04 +01:00
|
|
|
Compare
|
2012-08-11 00:07:50 +02:00
|
|
|
%li{class: "#{branches_tab_class}"}
|
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-08-11 00:07:50 +02:00
|
|
|
%li{class: "#{'active' if current_page?(tags_project_repository_path(@project)) }"}
|
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-02-26 21:06:40 +01:00
|
|
|
- if current_page?(project_commits_path(@project)) && current_user.private_token
|
|
|
|
%li.right
|
2012-05-27 00:09:44 +02:00
|
|
|
%span.rss-icon
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to project_commits_path(@project, :atom, { private_token: current_user.private_token, ref: @ref }), title: "Feed" do
|
|
|
|
= image_tag "rss_ui.png", title: "feed"
|