debian-mirror-gitlab/app/views/projects/ci_services/index.html.haml

24 lines
621 B
Text
Raw Normal View History

2015-11-26 14:37:03 +05:30
- page_title "CI Services"
2015-09-25 12:07:36 +05:30
%h3.page-title Project services
%p.light Project services allow you to integrate GitLab CI with other applications
%table.table
%thead
%tr
%th
%th Service
2015-10-24 18:46:33 +05:30
%th Description
2015-09-25 12:07:36 +05:30
%th Last edit
- @services.sort_by(&:title).each do |service|
%tr
%td
= boolean_to_icon service.activated?
%td
2015-10-24 18:46:33 +05:30
= link_to edit_namespace_project_ci_service_path(@project.namespace, @project, service.to_param) do
2015-09-25 12:07:36 +05:30
%strong= service.title
%td
= service.description
%td.light
= time_ago_in_words service.updated_at
ago