2012-04-10 08:51:08 +03:00
|
|
|
%ul.nav.nav-tabs
|
2012-02-06 22:32:04 +02:00
|
|
|
%li
|
2012-08-10 18:07:50 -04:00
|
|
|
= form_tag switch_project_refs_path(@project), method: :get, class: "project-refs-form" do
|
|
|
|
= select_tag "ref", grouped_options_refs, onchange: "$(this.form).trigger('submit');", class: "project-refs-select"
|
2012-02-06 22:32:04 +02:00
|
|
|
= hidden_field_tag :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-08-10 18:07:50 -04:00
|
|
|
%li{class: "#{'active' if current_page?(compare_project_commits_path(@project)) }"}
|
2012-06-04 01:37:27 +03:00
|
|
|
= link_to compare_project_commits_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-08-10 18:07:50 -04: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"
|
2012-02-06 22:32:04 +02:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(function(){
|
|
|
|
$('.project-refs-select').chosen();
|
|
|
|
});
|