mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-25 20:46:12 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: Gemfile app/controllers/application_controller.rb app/views/admin/groups/_form.html.haml app/views/groups/edit.html.haml app/views/groups/show.html.haml app/views/layouts/nav/_admin.html.haml app/views/projects/_settings_nav.html.haml db/schema.rb doc/install/installation.md doc/update/6.x-or-7.x-to-7.6.md
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
%ul.project-settings-nav.sidebar-subnav
|
|
= nav_link(path: 'projects#edit') do
|
|
= link_to edit_project_path(@project), class: "stat-tab tab " do
|
|
%i.fa.fa-pencil-square-o
|
|
%span
|
|
Project
|
|
= nav_link(controller: [:team_members, :teams]) do
|
|
= link_to project_team_index_path(@project), class: "team-tab tab" do
|
|
%i.fa.fa-users
|
|
%span
|
|
Members
|
|
= nav_link(controller: :group_links) do
|
|
= link_to project_group_links_path(@project) do
|
|
%i.fa.fa-share-square-o
|
|
%span
|
|
Groups
|
|
= nav_link(controller: :deploy_keys) do
|
|
= link_to project_deploy_keys_path(@project) do
|
|
%i.fa.fa-key
|
|
%span
|
|
Deploy Keys
|
|
= nav_link(controller: :hooks) do
|
|
= link_to project_hooks_path(@project) do
|
|
%i.fa.fa-link
|
|
%span
|
|
Web Hooks
|
|
= nav_link(controller: :git_hooks) do
|
|
= link_to project_git_hooks_path(@project) do
|
|
%i.fa.fa-git-square
|
|
%span
|
|
Git Hooks
|
|
= nav_link(controller: :services) do
|
|
= link_to project_services_path(@project) do
|
|
%i.fa.fa-cogs
|
|
%span
|
|
Services
|
|
= nav_link(controller: :protected_branches) do
|
|
= link_to project_protected_branches_path(@project) do
|
|
%i.fa.fa-lock
|
|
%span
|
|
Protected branches
|
|
= nav_link(controller: :audit_events) do
|
|
= link_to project_audit_events_path(@project) do
|
|
%i.fa.fa-file-text-o
|
|
%span
|
|
Audit Events
|