summaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/hook_list.tmpl
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2018-05-16 22:01:55 +0800
committerGitHub <noreply@github.com>2018-05-16 22:01:55 +0800
commit24941a10464dc27eaebafda2a208fa827b74ff8d (patch)
treec875dd6b7d659e2dbd926dbd3a04a036f9f41c94 /templates/repo/settings/hook_list.tmpl
parent188fe6c301f9c44d569b75cb339d6a6b3f6e03ad (diff)
downloadgitea-24941a10464dc27eaebafda2a208fa827b74ff8d.tar.gz
gitea-24941a10464dc27eaebafda2a208fa827b74ff8d.zip
Add more webhooks support and refactor webhook templates directory (#3929)
* add more webhook support * move hooks templates to standalone dir and add more webhooks ui * fix tests * update vendor checksum * add more webhook support * move hooks templates to standalone dir and add more webhooks ui * fix tests * update vendor checksum * update vendor Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> * load attributes when created release * update comparsion doc
Diffstat (limited to 'templates/repo/settings/hook_list.tmpl')
-rw-r--r--templates/repo/settings/hook_list.tmpl51
1 files changed, 0 insertions, 51 deletions
diff --git a/templates/repo/settings/hook_list.tmpl b/templates/repo/settings/hook_list.tmpl
deleted file mode 100644
index 4e61ba7a07..0000000000
--- a/templates/repo/settings/hook_list.tmpl
+++ /dev/null
@@ -1,51 +0,0 @@
-{{template "base/alert" .}}
-<h4 class="ui top attached header">
- {{.i18n.Tr "repo.settings.hooks"}}
- <div class="ui right">
- <div class="ui floating1 jump dropdown">
- <div class="ui blue tiny button">{{.i18n.Tr "repo.settings.add_webhook"}}</div>
- <div class="menu">
- <a class="item" href="{{.BaseLink}}/settings/hooks/gitea/new">
- <img class="img-10" src="{{AppSubUrl}}/img/gitea-sm.png">Gitea
- </a>
- <a class="item" href="{{.BaseLink}}/settings/hooks/gogs/new">
- <img class="img-10" src="{{AppSubUrl}}/img/gogs.ico">Gogs
- </a>
- <a class="item" href="{{.BaseLink}}/settings/hooks/slack/new">
- <img class="img-10" src="{{AppSubUrl}}/img/slack.png">Slack
- </a>
- <a class="item" href="{{.BaseLink}}/settings/hooks/discord/new">
- <img class="img-10" src="{{AppSubUrl}}/img/discord.png">Discord
- </a>
- <a class="item" href="{{.BaseLink}}/settings/hooks/dingtalk/new">
- <img class="img-10" src="{{AppSubUrl}}/img/dingtalk.ico">Dingtalk
- </a>
- </div>
- </div>
- </div>
-</h4>
-<div class="ui attached segment">
- <div class="ui list">
- <div class="item">
- {{.Description | Str2html}}
- </div>
- {{range .Webhooks}}
- <div class="item">
- {{if eq .LastStatus 1}}
- <span class="text green"><i class="octicon octicon-check"></i></span>
- {{else if eq .LastStatus 2}}
- <span class="text red"><i class="octicon octicon-alert"></i></span>
- {{else}}
- <span class="text grey"><i class="octicon octicon-primitive-dot"></i></span>
- {{end}}
- <a href="{{$.BaseLink}}/settings/hooks/{{.ID}}">{{.URL}}</a>
- <div class="ui right">
- <span class="text blue"><a href="{{$.BaseLink}}/settings/hooks/{{.ID}}"><i class="fa fa-pencil"></i></a></span>
- <span class="text red"><a class="delete-button" data-url="{{$.Link}}/delete" data-id="{{.ID}}"><i class="fa fa-times"></i></a></span>
- </div>
- </div>
- {{end}}
- </div>
-</div>
-
-{{template "repo/settings/hook_delete_modal" .}}