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

_index.html.haml « plugins « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d230d12be2fbf76166a25b721b8d547e5df6288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- 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?
      .card
        .card-header
          Plugins (#{plugins.count})
        %ul.content-list
          - plugins.each do |file|
            %li
              .monospace
                = File.basename(file)
    - else
      .card.bg-light.text-center
        .nothing-here-block No plugins found.