Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « services « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19a0b7466a28fe88b3f684eecd04a8dde64d551a (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
- page_title _("Service Templates")
%h3.page-title Service templates
%p.light= s_('AdminSettings|Service template allows you to set default values for integrations')

.table-holder
  %table.table
    %thead
      %tr
        %th
        %th Service
        %th Description
        %th Last edit
    - @services.each do |service|
      - if service.type.in?(@existing_instance_types)
        %tr
          %td
          %td
            = link_to edit_admin_application_settings_integration_path(service.to_param), class: 'gl-text-blue-300!' do
              %strong.has-tooltip{ title: s_('AdminSettings|Moved to integrations'), data: { container: 'body' } }
                = service.title
          %td.gl-cursor-default.gl-text-gray-400
            = service.description
          %td
      - else
        %tr
          %td
            = boolean_to_icon service.activated?
          %td
            = link_to edit_admin_application_settings_service_path(service.id) do
              %strong= service.title
          %td
            = service.description
          %td.light
            = time_ago_with_tooltip service.updated_at