2015-09-11 14:41:01 +05:30
|
|
|
- page_title "Service Templates"
|
2015-04-26 12:48:37 +05:30
|
|
|
%h3.page-title Service templates
|
|
|
|
%p.light Service template allows you to set default values for project services
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
.table-holder
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th
|
|
|
|
%th Service
|
|
|
|
%th Description
|
|
|
|
%th Last edit
|
|
|
|
- @services.sort_by(&:title).each do |service|
|
|
|
|
%tr
|
|
|
|
%td
|
2017-08-17 22:00:37 +05:30
|
|
|
= boolean_to_icon service.activated?
|
2015-11-26 14:37:03 +05:30
|
|
|
%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
|