summaryrefslogtreecommitdiff
path: root/app/views/admin/services/index.html.haml
blob: 1bf3400bd43003470181f61ea18a9e6ab5762860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- page_title _('Service Templates')
%h3.page-title= _('Service templates')
%p.light= _('Service template allows you to set default values for project services')

.table-holder
  %table.table
    %thead
      %tr
        %th
        %th= _('Service')
        %th= _('Description')
        %th= _('Last edit')
    - @services.sort_by(&:title).each do |service|
      %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