d6c384c20f
Seeing `:javascript` all over Views feels like a code smell. This goes a long way towards reducing the amount of JS in views, but there's still plenty to be done on that front.
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
%ul.nav.nav-tabs
|
|
%li
|
|
= 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 chosen"
|
|
= hidden_field_tag :destination, "commits"
|
|
|
|
%li{class: "#{'active' if current_page?(project_commits_path(@project)) }"}
|
|
= link_to project_commits_path(@project) do
|
|
Commits
|
|
%li{class: "#{'active' if current_page?(compare_project_commits_path(@project)) }"}
|
|
= link_to compare_project_commits_path(@project) do
|
|
Compare
|
|
%li{class: "#{branches_tab_class}"}
|
|
= link_to project_repository_path(@project) do
|
|
Branches
|
|
%span.badge= @project.repo.branch_count
|
|
|
|
%li{class: "#{'active' if current_page?(tags_project_repository_path(@project)) }"}
|
|
= link_to tags_project_repository_path(@project) do
|
|
Tags
|
|
%span.badge= @project.repo.tag_count
|
|
|
|
|
|
- if current_page?(project_commits_path(@project)) && current_user.private_token
|
|
%li.right
|
|
%span.rss-icon
|
|
= 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"
|