14 lines
348 B
Cheetah
14 lines
348 B
Cheetah
{{/*
|
|
* Copyright (C) 2024 Umorpha Systems
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/}}
|
|
{{- define "page-title" }}Webhooks{{ end }}
|
|
{{- define "page-content" }}
|
|
<ul>
|
|
{{- range $webhook := .Webhooks }}
|
|
<li><a href="{{ $webhook }}"><tt>{{ $webhook }}</tt></a></li>
|
|
{{- end }}
|
|
</ul>
|
|
{{- end }}
|
|
{{- template "page.html.tmpl" . }}
|