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