diff options
author | Unknwon <u@gogs.io> | 2017-03-16 15:50:18 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-03-16 15:50:18 -0400 |
commit | 4e64e71e28dcfb9ef41d7cbc63ff1474ad8e5126 (patch) | |
tree | f0fc31d14ebffed97f5b0110206e85a25f1bc76f /templates/repo/settings/webhook/list.tmpl | |
parent | 86c7f45383755e7c2d19952b1a577ffa6630fda9 (diff) |
templates/repo/webhook: move to its own directory
Diffstat (limited to 'templates/repo/settings/webhook/list.tmpl')
-rw-r--r-- | templates/repo/settings/webhook/list.tmpl | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/templates/repo/settings/webhook/list.tmpl b/templates/repo/settings/webhook/list.tmpl new file mode 100644 index 00000000..3599172d --- /dev/null +++ b/templates/repo/settings/webhook/list.tmpl @@ -0,0 +1,55 @@ +<div class="twelve wide column content"> + {{template "base/alert" .}} + <h4 class="ui top attached header"> + {{.i18n.Tr "repo.settings.hooks"}} + <div class="ui right"> + <div class="ui types jump dropdown"> + {{if .Types}} + <div class="ui blue tiny button">{{.i18n.Tr "repo.settings.add_webhook"}}</div> + <div class="menu"> + {{range .Types}} + {{if eq . "gogs"}} + <a class="item" href="{{$.BaseLink}}/settings/hooks/gogs/new"> + <img class="img-12" src="{{AppSubUrl}}/img/favicon.png">Gogs + </a> + {{else if eq . "slack"}} + <a class="item" href="{{$.BaseLink}}/settings/hooks/slack/new"> + <img class="img-12" src="{{AppSubUrl}}/img/slack.png">Slack + </a> + {{else if eq . "discord"}} + <a class="item" href="{{$.BaseLink}}/settings/hooks/discord/new"> + <img class="img-12" src="{{AppSubUrl}}/img/discord.png">Discord + </a> + {{end}} + {{end}} + </div> + {{end}} + </div> + </div> + </h4> + <div class="ui attached table segment"> + <div class="ui hook 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> +</div> + +{{template "repo/settings/webhook/delete_modal" .}} |