index.html.haml 690 字节
Newer Older
1
- @breadcrumb_title = "Services Templates"
D
Douwe Maan 已提交
2
- page_title "Service Templates"
M
Marin Jankovski 已提交
3 4 5
%h3.page-title Service templates
%p.light Service template allows you to set default values for project services

D
Douwe Maan 已提交
6 7 8 9 10 11 12 13 14 15 16
.table-holder
  %table.table
    %thead
      %tr
        %th
        %th Service
        %th Description
        %th Last edit
    - @services.sort_by(&:title).each do |service|
      %tr
        %td
17
          = boolean_to_icon service.activated?
D
Douwe Maan 已提交
18 19 20 21 22 23 24 25
        %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