2018-03-27 19:54:05 +05:30
|
|
|
- plugins = Gitlab::Plugin.files
|
|
|
|
|
|
|
|
.row.prepend-top-default
|
|
|
|
.col-lg-4
|
|
|
|
%h4.prepend-top-0
|
|
|
|
Plugins
|
|
|
|
%p
|
|
|
|
#{link_to 'Plugins', help_page_path('administration/plugins')} are similar to
|
|
|
|
system hooks but are executed as files instead of sending data to a URL.
|
|
|
|
|
|
|
|
.col-lg-8.append-bottom-default
|
|
|
|
- if plugins.any?
|
2018-11-08 19:23:39 +05:30
|
|
|
.card
|
|
|
|
.card-header
|
2018-03-27 19:54:05 +05:30
|
|
|
Plugins (#{plugins.count})
|
|
|
|
%ul.content-list
|
|
|
|
- plugins.each do |file|
|
|
|
|
%li
|
|
|
|
.monospace
|
|
|
|
= File.basename(file)
|
|
|
|
- else
|
2018-11-20 20:47:30 +05:30
|
|
|
.card.bg-light.text-center
|
|
|
|
.nothing-here-block No plugins found.
|