summaryrefslogtreecommitdiffstats
path: root/templates/repo/hook_edit.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/repo/hook_edit.tmpl')
-rw-r--r--templates/repo/hook_edit.tmpl72
1 files changed, 72 insertions, 0 deletions
diff --git a/templates/repo/hook_edit.tmpl b/templates/repo/hook_edit.tmpl
new file mode 100644
index 0000000000..c3fe217e37
--- /dev/null
+++ b/templates/repo/hook_edit.tmpl
@@ -0,0 +1,72 @@
+{{template "base/head" .}}
+{{template "base/navbar" .}}
+{{template "repo/nav" .}}
+{{template "repo/toolbar" .}}
+<div id="body" class="container">
+ {{template "repo/setting_nav" .}}
+ <div id="repo-setting-container" class="col-md-10">
+ {{template "base/alert" .}}
+ <form id="repo-hooks-edit-form" action="{{.RepoLink}}/settings/hooks/{{.Webhook.Id}}" method="post">
+ {{.CsrfTokenHtml}}
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ Manage Webhook
+ </div>
+
+ <div class="panel-body">
+ <div class="col-md-7">
+ <p>We’ll send a POST request to the URL below with details of any subscribed events.</p>
+ <hr/>
+ <div class="form-group">
+ <label for="payload-url">Payload URL</label>
+ <input id="payload-url" name="url" class="form-control" type="url" required="required" value="{{.Webhook.Url}}" />
+ </div>
+
+ <div class="form-group">
+ <label for="payload-version">Content type</label>
+ <select id="content-type" name="content_type" class="form-control">
+ <option value="1">application/json</option>
+ </select>
+ </div>
+
+ <div class="form-group">
+ <label for="payload-secret">Secret</label>
+ <input id="payload-secret" name="secret" class="form-control" type="text" value="{{.Webhook.Secret}}" />
+ </div>
+ <hr/>
+ <div class="form-group">
+ <label>Which events would you like to trigger this webhook?</label>
+ <div class="radio">
+ <label>
+ <input class="form-control" name="push_only" type="radio" {{if .Webhook.HookEvent.PushOnly}}checked {{end}}name="trigger"/> Just the <i>push</i> event.
+ </label>
+ </div>
+ </div>
+ <hr/>
+ <div class="form-group">
+ <label>
+ <input type="checkbox" name="active" {{if .Webhook.IsActive}}checked{{end}}/>&nbsp;&nbsp;Active
+ </label>
+ <p class="help-block">We will deliver event details when this hook is triggered.</p>
+ </div>
+ </div>
+ </div>
+
+ <div class="panel-footer">
+ <button class="btn btn-primary">Update Webhook</button>&nbsp;&nbsp;
+ <a type="button" href="{{.RepoLink}}/settings/hooks?remove={{.Webhook.Id}}" class="btn btn-danger">Delete Webhook</a>
+ </div>
+ </div>
+ </form>
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ <h3 class="panel-title">Recent Deliveries</h3>
+ </div>
+
+ <div class="panel-body">
+ Coming soon
+ </div>
+ </div>
+ </div>
+</div>
+{{template "base/footer" .}} \ No newline at end of file