00629fea95
* static url
* add cors support for static resources
* [assets] work on the migration to configurable url for assets
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [misc] fix whitespace
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [assets] fix the loading of the manifest.json
It is generated dynamically, and as such can not be served by the cdn.
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* Revert "add cors support for static resources"
This reverts commit 42f964fd181dbb8b139808b9be623470d4f0e40f
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [docs] add the STATIC_URL_PREFIX option
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [docs] reverse-proxy: nginx: add two setups for STATIC_URL_PREFIX
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* [assets] migrate the url of a new asset to the static url prefix
REF: f2a3abc683
Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
44 lines
1.8 KiB
Cheetah
44 lines
1.8 KiB
Cheetah
{{template "base/head" .}}
|
|
<div class="organization settings new webhook">
|
|
{{template "org/header" .}}
|
|
<div class="ui container">
|
|
<div class="ui grid">
|
|
{{template "org/settings/navbar" .}}
|
|
<div class="twelve wide column content">
|
|
{{template "base/alert" .}}
|
|
<h4 class="ui top attached header">
|
|
{{if .PageIsSettingsHooksNew}}{{.i18n.Tr "repo.settings.add_webhook"}}{{else}}{{.i18n.Tr "repo.settings.update_webhook"}}{{end}}
|
|
<div class="ui right">
|
|
{{if eq .HookType "gitea"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/gitea-sm.png">
|
|
{{else if eq .HookType "gogs"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/gogs.ico">
|
|
{{else if eq .HookType "slack"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/slack.png">
|
|
{{else if eq .HookType "discord"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/discord.png">
|
|
{{else if eq .HookType "dingtalk"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/dingtalk.png">
|
|
{{else if eq .HookType "telegram"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/telegram.png">
|
|
{{else if eq .HookType "msteams"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/msteams.png">
|
|
{{end}}
|
|
</div>
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
{{template "repo/settings/webhook/gitea" .}}
|
|
{{template "repo/settings/webhook/gogs" .}}
|
|
{{template "repo/settings/webhook/slack" .}}
|
|
{{template "repo/settings/webhook/discord" .}}
|
|
{{template "repo/settings/webhook/dingtalk" .}}
|
|
{{template "repo/settings/webhook/telegram" .}}
|
|
{{template "repo/settings/webhook/msteams" .}}
|
|
</div>
|
|
|
|
{{template "repo/settings/webhook/history" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|