gitlab-org--gitlab-foss/app/views/admin/services/index.html.haml

24 lines
637 B
Text
Raw Normal View History

2015-04-30 13:06:18 -04:00
- page_title "Service Templates"
2015-02-11 20:34:41 -05:00
%h3.page-title Service templates
%p.light Service template allows you to set default values for project services
2015-10-19 05:19:45 -04:00
.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?
2015-10-19 05:19:45 -04:00
%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