aboutsummaryrefslogtreecommitdiff
path: root/rpkid
diff options
context:
space:
mode:
Diffstat (limited to 'rpkid')
-rw-r--r--rpkid/rpki/gui/app/templates/app/child_delete_form.html20
-rw-r--r--rpkid/rpki/gui/app/templates/app/destroy_handle_form.html17
-rw-r--r--rpkid/rpki/gui/app/templates/app/generic_result.html13
-rw-r--r--rpkid/rpki/gui/app/templates/app/initialize_form.html13
-rw-r--r--rpkid/rpki/gui/app/templates/app/update_bpki_form.html15
5 files changed, 0 insertions, 78 deletions
diff --git a/rpkid/rpki/gui/app/templates/app/child_delete_form.html b/rpkid/rpki/gui/app/templates/app/child_delete_form.html
deleted file mode 100644
index 22c40a60..00000000
--- a/rpkid/rpki/gui/app/templates/app/child_delete_form.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-
-<p id='breadcrumb'>
-<a href="{% url rpki.gui.app.views.dashboard %}">{{ request.session.handle.handle }}</a> &gt;
-<a href="{{ object.get_absolute_url }}">{{ object.handle }}</a> &gt; Delete
-</p>
-
-<h1>Delete Child</h1>
-
-<p><span style='font-weight:bold'>Child:</span> {{ object.handle }}</p>
-
-<form method='POST' action='{{ request.get_full_path }}'>
- {% csrf_token %}
- {{ form.as_p }}
- <input type='submit'/ value='Delete'>
-</form>
-
-{% endblock %}
diff --git a/rpkid/rpki/gui/app/templates/app/destroy_handle_form.html b/rpkid/rpki/gui/app/templates/app/destroy_handle_form.html
deleted file mode 100644
index e1e6711f..00000000
--- a/rpkid/rpki/gui/app/templates/app/destroy_handle_form.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-
-<h1>Destroy {{ handle }}?</h1>
-
-<p>
-Please confirm that you wish to destroy this resource handle by clicking the Destroy button below. All configuration files and data associated with this handle will be permanently removed, and can not be undone.
-</p>
-
-<form method="POST" action="{{ request.get_full_path }}">
- {% csrf_token %}
- <input type="submit" value="Destroy">
-</form>
-
-{% endblock %}
-
diff --git a/rpkid/rpki/gui/app/templates/app/generic_result.html b/rpkid/rpki/gui/app/templates/app/generic_result.html
deleted file mode 100644
index 65d4e42e..00000000
--- a/rpkid/rpki/gui/app/templates/app/generic_result.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-
-<h1>{{ operation }} {{ result }}</h1>
-
-{% if reason %}
-<p>
-{{ reason }}
-</p>
-{% endif %}
-
-{% endblock %}
diff --git a/rpkid/rpki/gui/app/templates/app/initialize_form.html b/rpkid/rpki/gui/app/templates/app/initialize_form.html
deleted file mode 100644
index 372316ee..00000000
--- a/rpkid/rpki/gui/app/templates/app/initialize_form.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-
-<p>Your account has not been initialized. Please click on the button to initialize.</P>
-
-<form method="post" action="{{ request.get_full_path }}">
- {% csrf_token %}
- <input type=submit value='Intialize'>
-</form>
-
-{% endblock %}
-
diff --git a/rpkid/rpki/gui/app/templates/app/update_bpki_form.html b/rpkid/rpki/gui/app/templates/app/update_bpki_form.html
deleted file mode 100644
index 68d93da8..00000000
--- a/rpkid/rpki/gui/app/templates/app/update_bpki_form.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-
-<p>Click the button to rewew your BPKI certificates.</p>
-
-<form method="POST" action="{{ request.get_full_path }}">
- {% csrf_token %}
- <table class="table table-condensed table-striped">
-{{ form.as_table }}
-</table>
-<input type="submit" value="Update">
-</form>
-
-{% endblock %}