gitlab-org--gitlab-foss/app/views/projects/services/_index.html.haml

31 lines
1.1 KiB
Text
Raw Normal View History

2016-05-17 05:38:01 -04:00
.row.prepend-top-default.append-bottom-default
.col-lg-4
2016-05-17 05:38:01 -04:00
%h4.prepend-top-0
= s_("ProjectService|Project services")
%p= s_("ProjectService|Project services allow you to integrate GitLab with other applications")
.col-lg-8
2016-05-26 04:15:56 -04:00
%table.table
%colgroup
%col
%col
2018-06-18 15:18:09 -04:00
%col
2016-05-26 04:15:56 -04:00
%col{ width: "120" }
%thead
%tr
%th
%th= s_("ProjectService|Service")
%th.d-none.d-sm-block= _("Description")
%th= s_("ProjectService|Last edit")
2016-05-26 04:15:56 -04:00
- @services.sort_by(&:title).each do |service|
%tr
%td{ "aria-label" => (service.activated? ? s_("ProjectService|%{service_title}: status on") : s_("ProjectService|%{service_title}: status off")) % { service_title: service.title } }
2016-05-26 04:15:56 -04:00
= boolean_to_icon service.activated?
%td
= link_to edit_project_service_path(@project, service.to_param) do
2016-05-26 04:15:56 -04:00
%strong= service.title
2018-04-09 17:50:40 -04:00
%td.d-none.d-sm-block
2016-05-26 04:15:56 -04:00
= service.description
%td.light
- if service.updated_at.present?
= time_ago_with_tooltip service.updated_at