debian-mirror-gitlab/app/views/shared/web_hooks/_hook.html.haml

17 lines
749 B
Text
Raw Normal View History

2020-01-01 13:55:28 +05:30
%li
.row
.col-md-8.col-lg-7
%strong.light-header= hook.url
%div
- hook.class.triggers.each_value do |trigger|
- if hook.public_send(trigger)
%span.badge.badge-gray.deploy-project-label= trigger.to_s.titleize
%span.badge.badge-gray
= _('SSL Verification:')
= hook.enable_ssl_verification ? _('enabled') : _('disabled')
2020-07-28 23:09:34 +05:30
.col-md-4.col-lg-5.text-right-md.gl-mt-2
2020-06-23 00:09:42 +05:30
%span>= render 'shared/web_hooks/test_button', hook: hook, button_class: 'btn-sm gl-mr-3'
%span>= link_to _('Edit'), edit_hook_path(hook), class: 'btn btn-sm gl-mr-3'
2020-01-01 13:55:28 +05:30
= link_to _('Delete'), destroy_hook_path(hook), data: { confirm: _('Are you sure?') }, method: :delete, class: 'btn btn-sm'