You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hook_new.tmpl 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. {{template "base/head" .}}
  2. <div class="organization settings new webhook">
  3. {{template "org/header" .}}
  4. <div class="ui container">
  5. <div class="ui grid">
  6. {{template "org/settings/navbar" .}}
  7. <div class="twelve wide column content">
  8. {{template "base/alert" .}}
  9. <h4 class="ui top attached header">
  10. {{if .PageIsSettingsHooksNew}}{{.i18n.Tr "repo.settings.add_webhook"}}{{else}}{{.i18n.Tr "repo.settings.update_webhook"}}{{end}}
  11. <div class="ui right">
  12. {{if eq .HookType "gitea"}}
  13. <img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png">
  14. {{else if eq .HookType "gogs"}}
  15. <img class="img-13" src="{{AppSubUrl}}/img/gogs.ico">
  16. {{else if eq .HookType "slack"}}
  17. <img class="img-13" src="{{AppSubUrl}}/img/slack.png">
  18. {{end}}
  19. </div>
  20. </h4>
  21. <div class="ui attached segment">
  22. {{template "repo/settings/hook_gitea" .}}
  23. {{template "repo/settings/hook_gogs" .}}
  24. {{template "repo/settings/hook_slack" .}}
  25. </div>
  26. {{template "repo/settings/hook_history" .}}
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. {{template "base/footer" .}}