debian-mirror-gitlab/app/views/projects/hooks/_index.html.haml

24 lines
858 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4
2017-08-17 22:00:37 +05:30
%h4.prepend-top-0
= page_title
%p
#{link_to 'Webhooks', help_page_path('user/project/integrations/webhooks')} can be
used for binding events when something is happening within the project.
2017-09-10 17:25:29 +05:30
.col-lg-8.append-bottom-default
2017-08-17 22:00:37 +05:30
= form_for @hook, as: :hook, url: polymorphic_path([@project.namespace.becomes(Namespace), @project, :hooks]) do |f|
= render partial: 'shared/web_hooks/form', locals: { form: f, hook: @hook }
2018-12-05 23:21:45 +05:30
= f.submit 'Add webhook', class: 'btn btn-success'
2017-08-17 22:00:37 +05:30
%hr
%h5.prepend-top-default
Webhooks (#{@hooks.count})
- if @hooks.any?
2018-11-08 19:23:39 +05:30
%ul.content-list
2017-08-17 22:00:37 +05:30
- @hooks.each do |hook|
= render 'project_hook', hook: hook
- else
%p.settings-message.text-center.append-bottom-0
No webhooks found, add one in the form above.