2016-05-17 05:38:01 -04:00
|
|
|
.row.prepend-top-default.append-bottom-default
|
2017-06-09 07:06:35 -04:00
|
|
|
.col-lg-4
|
2016-05-17 05:38:01 -04:00
|
|
|
%h4.prepend-top-0
|
|
|
|
Project services
|
|
|
|
%p Project services allow you to integrate GitLab with other applications
|
2017-06-09 07:06:35 -04:00
|
|
|
.col-lg-8
|
2016-05-26 04:15:56 -04:00
|
|
|
%table.table
|
|
|
|
%colgroup
|
|
|
|
%col
|
|
|
|
%col
|
|
|
|
%col.hidden-xs
|
|
|
|
%col{ width: "120" }
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th
|
|
|
|
%th Service
|
|
|
|
%th.hidden-xs Description
|
|
|
|
%th Last edit
|
|
|
|
- @services.sort_by(&:title).each do |service|
|
|
|
|
%tr
|
2017-03-23 02:40:36 -04:00
|
|
|
%td{ "aria-label" => "#{service.title}: status " + (service.activated? ? "on" : "off") }
|
2016-05-26 04:15:56 -04:00
|
|
|
= boolean_to_icon service.activated?
|
|
|
|
%td
|
2017-06-29 13:06:35 -04:00
|
|
|
= link_to edit_project_service_path(@project, service.to_param) do
|
2016-05-26 04:15:56 -04:00
|
|
|
%strong= service.title
|
|
|
|
%td.hidden-xs
|
|
|
|
= service.description
|
|
|
|
%td.light
|
2016-11-16 06:46:07 -05:00
|
|
|
- if service.updated_at.present?
|
|
|
|
= time_ago_in_words service.updated_at
|
|
|
|
ago
|