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

24 lines
612 B
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- page_title "Services"
%h3.page-title Project services
%p.light Project services allow you to integrate GitLab with other applications
2012-11-19 19:34:05 +00:00
2015-01-24 05:03:12 +00:00
%table.table
%thead
%tr
%th
%th Service
2015-02-27 21:49:40 +00:00
%th Description
2015-01-24 05:03:12 +00:00
%th Last edit
- @services.sort_by(&:title).each do |service|
2015-01-24 05:03:12 +00:00
%tr
%td
= boolean_to_icon service.activated?
%td
= link_to edit_namespace_project_service_path(@project.namespace, @project, service.to_param) do
2015-01-24 05:03:12 +00:00
%strong= service.title
%td
= service.description
%td.light
= time_ago_in_words service.updated_at
ago