mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-16 16:16:43 +10:00
- Add page titles to CI settings. - Fix CI admin navigation. - Remove duplicated scope. - Use monospace font for commit sha. - Add page title and header title to build page. - Proper authorization for cancel/retry builds. - Use gitlab pagination theme for builds and group members. - Don't paginate builds widget on build page. - Add badges to commit page Changes/Builds tabs. - Add "Builds" to commit Builds tab page title. - Add and use Ci::Build#retryable? method. - Add CI::Build#retried? method. - Allow all failed commit builds to be retried. - Proper authorization for cancel/retry all builds. - Remove unused param. - Use time_ago_with_tooltip where appropriate. - Tweak builds index text - Remove duplication between builds/build and commit_statuses/commit_status. - Use POST rather than GET for canceling and retrying builds. - Remove redundant URL helpers. - Add build ID to build page. - Link branch name on build page. - Move commit/:sha/ci to commit/:sha/builds.
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
%ul.nav.nav-sidebar
|
|
= nav_link do
|
|
= link_to admin_root_path, title: 'Back to admin', data: {placement: 'right'}, class: 'back-link' do
|
|
= icon('caret-square-o-left fw')
|
|
%span
|
|
Back to admin
|
|
|
|
%li.separate-item
|
|
= nav_link path: 'projects#index' do
|
|
= link_to ci_admin_projects_path do
|
|
= icon('list-alt fw')
|
|
%span
|
|
Projects
|
|
= nav_link path: 'events#index' do
|
|
= link_to ci_admin_events_path do
|
|
= icon('book fw')
|
|
%span
|
|
Events
|
|
= nav_link path: ['runners#index', 'runners#show'] do
|
|
= link_to ci_admin_runners_path do
|
|
= icon('cog fw')
|
|
%span
|
|
Runners
|
|
%span.count= Ci::Runner.count(:all)
|
|
= nav_link path: 'builds#index' do
|
|
= link_to ci_admin_builds_path do
|
|
= icon('link fw')
|
|
%span
|
|
Builds
|
|
%span.count= Ci::Build.count(:all)
|
|
= nav_link(controller: :application_settings, html_options: { class: 'separate-item'}) do
|
|
= link_to ci_admin_application_settings_path do
|
|
= icon('cogs fw')
|
|
%span
|
|
Settings
|