ba68facf8d
- 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.
66 lines
1.1 KiB
Text
66 lines
1.1 KiB
Text
- page_title "#{@runner.description} ##{@runner.id}", "Runners"
|
|
|
|
%h3.page-title
|
|
Runner ##{@runner.id}
|
|
.pull-right
|
|
- if @runner.shared?
|
|
%span.runner-state.runner-state-shared
|
|
Shared
|
|
- else
|
|
%span.runner-state.runner-state-specific
|
|
Specific
|
|
|
|
.table-holder
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th Property Name
|
|
%th Value
|
|
%tr
|
|
%td
|
|
Tags
|
|
%td
|
|
- @runner.tag_list.each do |tag|
|
|
%span.label.label-primary
|
|
= tag
|
|
%tr
|
|
%td
|
|
Name
|
|
%td
|
|
= @runner.name
|
|
%tr
|
|
%td
|
|
Version
|
|
%td
|
|
= @runner.version
|
|
%tr
|
|
%td
|
|
Revision
|
|
%td
|
|
= @runner.revision
|
|
%tr
|
|
%td
|
|
Platform
|
|
%td
|
|
= @runner.platform
|
|
%tr
|
|
%td
|
|
Architecture
|
|
%td
|
|
= @runner.architecture
|
|
%tr
|
|
%td
|
|
Description
|
|
%td
|
|
= @runner.description
|
|
%tr
|
|
%td
|
|
Last contact
|
|
%td
|
|
- if @runner.contacted_at
|
|
#{time_ago_in_words(@runner.contacted_at)} ago
|
|
- else
|
|
Never
|
|
|
|
|
|
|