debian-mirror-gitlab/app/views/shared/web_hooks/_index.html.haml
2022-11-25 23:54:43 +05:30

13 lines
470 B
Text

%hr
= render Pajamas::CardComponent.new(card_options: { id: 'webhooks-index' }, body_options: { class: 'gl-py-0'}) do |c|
- c.header do
= hook_class.underscore.humanize.titleize.pluralize
(#{hooks.size})
- c.body do
- if hooks.any?
%ul.content-list
- hooks.each do |hook|
= render 'shared/web_hooks/hook', hook: hook
- else
%p.text-center.gl-mt-3.gl-mb-3
= _('No webhooks enabled. Select trigger events above.')