summaryrefslogtreecommitdiff
path: root/app/views/shared/runners/show.html.haml
blob: 93c6ba86640452b04e1fa51ad3fe362ce3f12610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
- 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
    - elsif @runner.group_type?
      %span.runner-state.runner-state-shared
        Group
    - else
      %span.runner-state.runner-state-specific
        Specific

.table-holder
  %table.table
    %thead
      %tr
        %th Property Name
        %th Value
    %tr
      %td Active
      %td= @runner.active? ? _('Yes') : _('No')
    %tr
      %td Protected
      %td= @runner.ref_protected? ? _('Yes') : _('No')
    %tr
      %td= _('Can run untagged jobs')
      %td= @runner.run_untagged? ? _('Yes') : _('No')
    - unless @runner.group_type?
      %tr
        %td= _('Locked to this project')
        %td= @runner.locked? ? _('Yes') : _('No')
    %tr
      %td Tags
      %td
        - @runner.tag_list.sort.each do |tag|
          %span.label.label-primary
            = tag
    %tr
      %td Name
      %td= @runner.name
    %tr
      %td Version
      %td= @runner.version
    %tr
      %td IP Address
      %td= @runner.ip_address
    %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= _('Maximum job timeout')
      %td= @runner.maximum_timeout_human_readable
    %tr
      %td Last contact
      %td
        - if @runner.contacted_at
          = time_ago_with_tooltip @runner.contacted_at
        - else
          Never