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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-03-06 19:08:14 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-03-06 19:08:14 +0300
commit674f8739c93378a43ba399ccbc01aecaed4878fa (patch)
tree981d030793a5c5dd608007e2a4fac5f5e457e17a /app/views/shared/plugins
parent9d250a8e49972cbf668bc1b36abc42b439253c1d (diff)
Remove plugins from project integrations page
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/shared/plugins')
-rw-r--r--app/views/shared/plugins/_index.html.haml14
1 files changed, 9 insertions, 5 deletions
diff --git a/app/views/shared/plugins/_index.html.haml b/app/views/shared/plugins/_index.html.haml
index 7a85884907a..fc643c3ecc2 100644
--- a/app/views/shared/plugins/_index.html.haml
+++ b/app/views/shared/plugins/_index.html.haml
@@ -6,14 +6,18 @@
Plugins
%p
#{link_to 'Plugins', help_page_path('administration/plugins')} are similar to
- system hooks but can be are executed as files instead of URL.
+ system hooks but are executed as files instead of sending data to a URL.
.col-lg-8.append-bottom-default
- if plugins.any?
- %ul.content-list
- - plugins.each do |file|
- %li
- = File.basename(file)
+ .panel.panel-default
+ .panel-heading
+ Plugins (#{plugins.count})
+ %ul.content-list
+ - plugins.each do |file|
+ %li
+ .monospace
+ = File.basename(file)
- else
%p.light-well.text-center
No plugins found.