Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « services « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d3ccb6bb839e7306e5b9409fee7e309d11eea3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
%h3.page-title Project services
%p.light Project services allow you to integrate GitLab with other applications

%table.table
  %thead
    %tr
      %th
      %th Service
      %th Description
      %th Last edit
  - @services.sort_by(&:title).each do |service|
    %tr
      %td
        = boolean_to_icon service.activated?
      %td
        = link_to edit_namespace_project_service_path(@project.namespace, @project, service.to_param) do
          %strong= service.title
      %td
        = service.description
      %td.light
        = time_ago_in_words service.updated_at
        ago