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

23 lines
587 B
Text
Raw Normal View History

%h3.page-title Project services
%p.light Project services allow you to integrate GitLab with other applications
2012-11-19 14:34:05 -05:00
2015-01-24 00:03:12 -05:00
%table.table
%thead
%tr
%th
%th Service
%th Desription
%th Last edit
- @services.sort_by(&:title).each do |service|
2015-01-24 00:03:12 -05: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 00:03:12 -05:00
%strong= service.title
%td
= service.description
%td.light
= time_ago_in_words service.updated_at
ago