aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2011-04-18 18:10:52 +0000
committerMichael Elkins <melkins@tislabs.com>2011-04-18 18:10:52 +0000
commitd234c4e828d3030ba66a1b8150fd705d9fc315f5 (patch)
tree8b4574014096401320e8e9771c8e607c08d575c1
parent0847d9a2564be25871b5785facc4421e75c16d28 (diff)
add missing html template
svn path=/rpkid/rpki/gui/app/templates/rpkigui/roa_request_confirm_delete.html; revision=3774
-rw-r--r--rpkid/rpki/gui/app/templates/rpkigui/roa_request_confirm_delete.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/rpkid/rpki/gui/app/templates/rpkigui/roa_request_confirm_delete.html b/rpkid/rpki/gui/app/templates/rpkigui/roa_request_confirm_delete.html
new file mode 100644
index 00000000..cbfba8b6
--- /dev/null
+++ b/rpkid/rpki/gui/app/templates/rpkigui/roa_request_confirm_delete.html
@@ -0,0 +1,24 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+<p id='breadcrumb'><a href="{% url rpki.gui.app.views.dashboard %}">{{request.session.handle}}</a> &gt; <a href="{{ object.prefix.get_absolute_url }}">{{ object.prefix }}</a> &gt; Delete ROA Request</p>
+
+<h1>Delete ROA Request</h1>
+
+<p>Please confirm that you would like to delete the following ROA request:</p>
+
+<table>
+ <tr><td>AS</td> <td>{{ object.roa.asn }}</td></tr>
+ <tr><td>Prefix</td> <td><a href="{{ object.prefix.get_absolute_url }}">{{ object.prefix }}</a></td></tr>
+ <tr><td>Max Length</td><td>{{ object.max_length }}</td></tr>
+</table>
+
+<p></p><!--add some space-->
+
+<form method='POST' action='{{ request.get_full_path }}'>
+{% csrf_token %}
+<input type='submit'/>
+</form>
+
+{% endblock %}