2020-07-28 23:09:34 +05:30
|
|
|
- page_title _("Service Templates")
|
2015-04-26 12:48:37 +05:30
|
|
|
%h3.page-title Service templates
|
2020-04-22 19:07:51 +05:30
|
|
|
%p.light= s_('AdminSettings|Service template allows you to set default values for integrations')
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
.table-holder
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th
|
|
|
|
%th Service
|
|
|
|
%th Description
|
|
|
|
%th Last edit
|
2020-04-22 19:07:51 +05:30
|
|
|
- @services.each do |service|
|
2020-07-28 23:09:34 +05:30
|
|
|
- if service.type.in?(@existing_instance_types)
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
%td
|
|
|
|
= link_to edit_admin_application_settings_integration_path(service.to_param), class: 'gl-text-blue-300!' do
|
|
|
|
%strong.has-tooltip{ title: s_('AdminSettings|Moved to integrations'), data: { container: 'body' } }
|
|
|
|
= service.title
|
|
|
|
%td.gl-cursor-default.gl-text-gray-600
|
|
|
|
= service.description
|
|
|
|
%td
|
|
|
|
- else
|
|
|
|
%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
|