-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathdelete_github.html
More file actions
29 lines (28 loc) · 975 Bytes
/
delete_github.html
File metadata and controls
29 lines (28 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}
{% block content %}
{{ block.super }}
<h3> Delete Test {{ test }}</h3>
<p>
Deleting this configuration will remove any GitHub product configurations, settings, and other relationships associate
with this configuration. These relationships are listed below:
</p>
<div class="danger-zone panel panel-danger">
<div class="panel-heading">
<h3>Danger Zone</h3>
</div>
{% if rels|length > 1 %}
<ul class="left">{{ rels|unordered_list }}</ul>
{% else %}
<p>No relationships found.</p>
{% endif %}
<form class="form-horizontal" method="post">
{% csrf_token %}
{{ form }}
<div class="form-group">
<button class="btn btn-danger" type="submit" name="delete_name" value="delete_test">Delete GitHub</button>
</div>
</form>
</div>
<br/>
<br/>
{% endblock %}