aboutsummaryrefslogtreecommitdiffstats
path: root/templates/gitrefinery/deleteconfirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/gitrefinery/deleteconfirm.html')
-rw-r--r--templates/gitrefinery/deleteconfirm.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/gitrefinery/deleteconfirm.html b/templates/gitrefinery/deleteconfirm.html
new file mode 100644
index 0000000..49ae94a
--- /dev/null
+++ b/templates/gitrefinery/deleteconfirm.html
@@ -0,0 +1,34 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% comment %}
+
+ gitrefinery-web - delete confirmation template
+
+ Copyright (C) 2013 Intel Corporation
+ Licensed under the MIT license, see COPYING.MIT for details
+
+{% endcomment %}
+
+<!--
+{% autoescape on %}
+{% block title_append %} - delete {{ object_type }}{% endblock %}
+{% endautoescape %}
+-->
+
+{% block content %}
+{% autoescape on %}
+
+<h2>Delete {{ object_type }}</h2>
+
+<p>Are you sure you want to delete &quot;{{ object }}&quot;?</p>
+
+<form action="" method="post">
+ {% csrf_token %}
+ <input type="submit" value="Delete" class='btn btn-warning' />
+ <a href="{{ cancel_url }}" class='btn btn-default'>Cancel</a>
+</form>
+
+{% endautoescape %}
+
+{% endblock %}