summaryrefslogtreecommitdiff
path: root/app/views/projects/services/index.html.haml
blob: 4a33a5bc6f6b8a67d59504a854c2f60c8a83c1b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- page_title "Services"

.row.prepend-top-default.append-bottom-default
  .col-lg-3
    %h4.prepend-top-0
      Project services
    %p Project services allow you to integrate GitLab with other applications
  .col-lg-9
    %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
          %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.hidden-xs
            = service.description
          %td.light
            = time_ago_in_words service.updated_at
            ago