2023-04-23 12:21:21 +02:00
|
|
|
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin settings new webhook")}}
|
|
|
|
<div class="admin-setting-content">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{$CustomHeaderTitle := ctx.Locale.Tr "admin.defaulthooks.update_webhook"}}
|
2023-09-06 12:11:06 +02:00
|
|
|
{{if .PageIsAdminDefaultHooksNew}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{$CustomHeaderTitle = ctx.Locale.Tr "admin.defaulthooks.add_webhook"}}
|
2023-09-06 12:11:06 +02:00
|
|
|
{{else if .PageIsAdminSystemHooksNew}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{$CustomHeaderTitle = ctx.Locale.Tr "admin.systemhooks.add_webhook"}}
|
2023-09-06 12:11:06 +02:00
|
|
|
{{else if .Webhook.IsSystemWebhook}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{$CustomHeaderTitle = ctx.Locale.Tr "admin.systemhooks.update_webhook"}}
|
2023-09-06 12:11:06 +02:00
|
|
|
{{end}}
|
|
|
|
{{template "webhook/new" (dict "ctxData" . "CustomHeaderTitle" $CustomHeaderTitle)}}
|
2019-03-19 03:33:20 +01:00
|
|
|
</div>
|
2023-04-23 12:21:21 +02:00
|
|
|
{{template "admin/layout_footer" .}}
|