debian-mirror-gitlab/app/views/projects/services/_index.html.haml

31 lines
1.1 KiB
Text
Raw Normal View History

2020-04-08 14:13:33 +05:30
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4
%h4.prepend-top-0
2020-04-08 14:13:33 +05:30
= _('Integrations')
%p= _('Integrations allow you to integrate GitLab with other applications')
2017-09-10 17:25:29 +05:30
.col-lg-8
%table.table
%colgroup
%col
%col
2018-11-08 19:23:39 +05:30
%col
%col{ width: "120" }
%thead
%tr
%th
2019-12-04 20:38:33 +05:30
%th= s_("ProjectService|Service")
%th.d-none.d-sm-block= _("Description")
%th= s_("ProjectService|Last edit")
- @services.sort_by(&:title).each do |service|
%tr
2019-12-04 20:38:33 +05:30
%td{ "aria-label" => (service.activated? ? s_("ProjectService|%{service_title}: status on") : s_("ProjectService|%{service_title}: status off")) % { service_title: service.title } }
= boolean_to_icon service.activated?
%td
2019-12-26 22:10:19 +05:30
= link_to edit_project_service_path(@project, service.to_param), { data: { qa_selector: "#{service.title.downcase.gsub(/[\s\(\)]/,'_')}_link" } } do
%strong= service.title
2018-11-08 19:23:39 +05:30
%td.d-none.d-sm-block
= service.description
%td.light
2017-08-17 22:00:37 +05:30
- if service.updated_at.present?
2018-10-15 14:42:47 +05:30
= time_ago_with_tooltip service.updated_at