hook_gogs.tmpl 1.6 KB

123456789101112131415161718192021222324
  1. <div id="gogs" class="{{if (and .PageIsSettingsHooksEdit (not (eq .HookType "Gogs")))}}hidden{{end}}">
  2. <form class="form form-align panel-body repo-setting-form" id="repo-setting-form-gogs" action="{{if .RepoLink}}{{.RepoLink}}{{else if .OrgLink}}{{.OrgLink}}{{end}}/settings/hooks/gogs/{{if .PageIsSettingsHooksNew}}new{{else}}{{.Webhook.Id}}{{end}}" method="post">
  3. {{.CsrfTokenHtml}}
  4. <input type="hidden" name="hook_type" value="gogs">
  5. <div class="text-center panel-desc">{{.i18n.Tr "repo.settings.add_webhook_desc" "http://gogs.io/docs/features/webhook.html" | Str2html}}</div>
  6. <div class="field">
  7. <label class="req" for="payload-url">{{.i18n.Tr "repo.settings.payload_url"}}</label>
  8. <input class="ipt ipt-large ipt-radius {{if .Err_UserName}}ipt-error{{end}}" id="payload-url" name="payload_url" type="url" value="{{.Webhook.Url}}" required />
  9. </div>
  10. <div class="field">
  11. <label class="req">{{.i18n.Tr "repo.settings.content_type"}}</label>
  12. <select name="content_type">
  13. <option value="1" {{if or .PageIsSettingsHooksNew (eq .Webhook.ContentType 1)}}selected{{end}}>application/json</option>
  14. <option value="2" {{if eq .Webhook.ContentType 2}}selected{{end}}>application/x-www-form-urlencoded</option>
  15. </select>
  16. </div>
  17. <div class="field">
  18. <label for="secret">{{.i18n.Tr "repo.settings.secret"}}</label>
  19. <input class="ipt ipt-large ipt-radius {{if .Err_UserName}}ipt-error{{end}}" id="secret" name="secret" type="password" value="{{.Webhook.Secret}}" autocomplete="off" />
  20. </div>
  21. {{template "repo/settings/hook_settings" .}}
  22. </form>
  23. </div>