various breadcrumb updates
This commit is contained in:
parent
bec6ea20f6
commit
d5ab1000aa
16 changed files with 23 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
|||
- add_to_breadcrumbs "Applications", admin_applications_path
|
||||
- breadcrumb_title @application.name
|
||||
- page_title "Edit", @application.name, "Applications"
|
||||
|
||||
%h3.page-title Edit application
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- breadcrumb_title "Cohorts"
|
||||
- @no_container = true
|
||||
= render "admin/dashboard/head"
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
- @no_container = true
|
||||
- breadcrumb_title "Dashboard"
|
||||
= render "admin/dashboard/head"
|
||||
|
||||
%div{ class: container_class }
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
- add_to_breadcrumbs "Groups", admin_groups_path
|
||||
- breadcrumb_title @group.name
|
||||
- page_title @group.name, "Groups"
|
||||
%h3.page-title
|
||||
Group: #{@group.full_name}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- add_to_breadcrumbs "System Hooks", admin_hooks_path
|
||||
- page_title 'Edit System Hook'
|
||||
%h3.page-title
|
||||
Edit System Hook
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- breadcrumb_title "Jobs"
|
||||
- @no_container = true
|
||||
= render "admin/dashboard/head"
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
- add_to_breadcrumbs "Labels", admin_labels_path
|
||||
- breadcrumb_title "Edit Label"
|
||||
- page_title "Edit", @label.name, "Labels"
|
||||
%h3.page-title
|
||||
Edit Label
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
- add_to_breadcrumbs "Projects", admin_projects_path
|
||||
- breadcrumb_title @project.name_with_namespace
|
||||
- page_title @project.name_with_namespace, "Projects"
|
||||
%h3.page-title
|
||||
Project: #{@project.name_with_namespace}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- breadcrumb_title "Runners"
|
||||
- @no_container = true
|
||||
= render "admin/dashboard/head"
|
||||
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
- add_to_breadcrumbs "Service Templates", admin_application_settings_services_path
|
||||
- breadcrumb_title @service.title
|
||||
- page_title @service.title, "Service Templates"
|
||||
= render 'form'
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
- add_to_breadcrumbs "Users", admin_users_path
|
||||
- breadcrumb_title @user.name
|
||||
- page_title @user.name, "Users"
|
||||
= render 'admin/users/head'
|
||||
|
||||
|
|
|
@ -8,4 +8,4 @@
|
|||
.dropdown-menu
|
||||
%ul
|
||||
- @breadcrumb_dropdown_links[dropdown_location].each_with_index do |link, index|
|
||||
%li{ style: "text-indent: #{[index * 15, 60].min}px;"}= link
|
||||
%li{ style: "text-indent: #{[index * 15, 60].min}px;" }= link
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- breadcrumb_title "Edit Password"
|
||||
- page_title "Password"
|
||||
- @content_class = "limit-container-width" unless fluid_layout
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
- breadcrumb_title "Access Tokens"
|
||||
- page_title "Personal Access Tokens"
|
||||
- @content_class = "limit-container-width" unless fluid_layout
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
- @no_container = true
|
||||
- add_to_breadcrumbs "Commit", project_commits_path(@project)
|
||||
- add_to_breadcrumbs "Commits", project_commits_path(@project)
|
||||
- breadcrumb_title @commit.short_id
|
||||
- container_class = !fluid_layout && diff_view == :inline ? 'container-limited' : ''
|
||||
- limited_container_width = fluid_layout ? '' : 'limit-container-width'
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
- @no_container = true
|
||||
- add_to_breadcrumbs "Wiki", get_project_wiki_path(@project)
|
||||
- breadcrumb_title "Pages"
|
||||
- page_title "Pages", "Wiki"
|
||||
|
||||
%div{ class: container_class }
|
||||
|
|
Loading…
Reference in a new issue