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

31 lines
949 B
Text
Raw Normal View History

.row.prepend-top-default.append-bottom-default
2017-09-10 17:25:29 +05:30
.col-lg-4
%h4.prepend-top-0
Project services
%p Project services allow you to integrate GitLab with other applications
2017-09-10 17:25:29 +05:30
.col-lg-8
%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-08-17 22:00:37 +05:30
%td{ "aria-label" => "#{service.title}: status " + (service.activated? ? "on" : "off") }
= boolean_to_icon service.activated?
%td
2017-09-10 17:25:29 +05:30
= link_to edit_project_service_path(@project, service.to_param) do
%strong= service.title
%td.hidden-xs
= 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