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: 0093fb97765b7aa30666f1540a3c8ff74688eb4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%h3.page-title Service templates
%p.light Service template allows you to set default values for project services

%table.table
  %thead
    %tr
      %th
      %th Service
      %th Description
      %th Last edit
  - @services.sort_by(&:title).each do |service|
    %tr
      %td
        = icon("copy", class: 'clgray')
      %td
        = link_to edit_admin_application_settings_service_path(service.id) do
          %strong= service.title
      %td
        = service.description
      %td.light
        = time_ago_in_words service.updated_at
        ago