b462a13387
- Remove compare/_head and just use commits/_head since they're identical - Add index view; extract the form into a partial
24 lines
1,014 B
Plaintext
24 lines
1,014 B
Plaintext
%ul.nav.nav-tabs
|
|
%li= render partial: 'shared/ref_switcher', locals: {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_controller?(:compare)}"}
|
|
= link_to project_compare_index_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, @ref, {format: :atom, private_token: current_user.private_token}), title: "Feed" do
|
|
= image_tag "rss_ui.png", title: "feed"
|