diff options
author | Phil Hughes <me@iamphill.com> | 2016-05-26 09:15:56 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-05-26 09:15:56 +0100 |
commit | 42879936a84f29252aa100bae0648f87f50ba89c (patch) | |
tree | 19f7da63db9398ed9ac642438e0aba76c84eb55b | |
parent | 97a7bdd251701494fad4629bebe5a0393aef8df9 (diff) | |
download | gitlab-ce-42879936a84f29252aa100bae0648f87f50ba89c.tar.gz |
Hide description on mobileservices-ui
-rw-r--r-- | app/views/projects/services/index.html.haml | 49 |
1 files changed, 24 insertions, 25 deletions
diff --git a/app/views/projects/services/index.html.haml b/app/views/projects/services/index.html.haml index 7b241136f69..4a33a5bc6f6 100644 --- a/app/views/projects/services/index.html.haml +++ b/app/views/projects/services/index.html.haml @@ -6,28 +6,27 @@ Project services %p Project services allow you to integrate GitLab with other applications .col-lg-9 - .table-responsive - %table.table - %colgroup - %col - %col - %col - %col{ width: "120" } - %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 + %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 |