summaryrefslogtreecommitdiff
path: root/app/views/admin/hooks/index.html.haml
blob: eed3ec74d60bb79caa89d1c83e365e3543b8feeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- page_title @hook.pluralized_name

.row.prepend-top-default
  .col-lg-4
    = render 'shared/web_hooks/title_and_docs', hook: @hook

  .col-lg-8.append-bottom-default
    = form_for @hook, as: :hook, url: admin_hooks_path do |f|
      = render partial: 'form', locals: { form: f, hook: @hook }
      = f.submit _('Add system hook'), class: 'btn btn-success'

    = render 'shared/web_hooks/index', hooks: @hooks, hook_class: @hook.class

= render 'shared/plugins/index'