diff options
author | luxagraf <sng@luxagraf.net> | 2010-10-23 19:46:20 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2010-10-23 19:46:20 -0400 |
commit | c59a2a69fb38b92b6c45bcf7431d2b1a3c5dce3c (patch) | |
tree | 2fc44ca867839d5e591e21467b6e4526f7a9f080 /lib/grappelli/templates/admin/delete_confirmation.html | |
parent | ed77da873e675f02f12cbab9be27f342f825444b (diff) |
added grappelli, filebrowser, chunks and tagging to lcal repo
Diffstat (limited to 'lib/grappelli/templates/admin/delete_confirmation.html')
-rw-r--r-- | lib/grappelli/templates/admin/delete_confirmation.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/grappelli/templates/admin/delete_confirmation.html b/lib/grappelli/templates/admin/delete_confirmation.html new file mode 100644 index 0000000..f0cf7ad --- /dev/null +++ b/lib/grappelli/templates/admin/delete_confirmation.html @@ -0,0 +1,48 @@ +{% extends "admin/base_site.html" %} + +<!-- LOADING --> +{% load i18n %} + +<!-- BREADCRUMBS --> +{% block breadcrumbs %} + <div id="breadcrumbs"> + <a href="../../../../">{% trans "Home" %}</a> › + <a href="../../../">{{ app_label|capfirst }}</a> › + <a href="../../">{{ opts.verbose_name_plural|capfirst }}</a> › + <a href="../">{{ object|truncatewords:"18" }}</a> › + {% trans 'Delete' %} + </div> +{% endblock %} + +<!-- CONTENT --> +{% block content %} + <div class="container-grid delete-confirmation"> + {% if perms_lacking %} + <div class="module"> + <h2>{% blocktrans with object as escaped_object %}Deleting the {{ object_name }} '{{ escaped_object }}' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}</h2> + <div class="row"> + <ul class="rte"> + {% for obj in perms_lacking %} + <li>{{ obj }}</li> + {% endfor %} + </ul> + </div> + </div> + {% else %} + <div class="module"> + <h2>{% blocktrans with object as escaped_object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktrans %}</h2> + <div class="row"> + <ul class="rte">{{ deleted_objects|unordered_list }}</ul> + </div> + </div> + <form action="" method="post">{% csrf_token %} + <div class="module footer"> + <ul class="submit-row" {% if is_popup %}style="overflow: auto;"{% endif %}> + <li class="left cancel-button-container"><a href="../" class="cancel-link">{% trans "Cancel" %}</a></li> + <li class="submit-button-container"><input type="submit" value="{% trans "Yes, I'm sure" %}" class="default" /></li> + </ul><input type="hidden" name="post" value="yes" /> + </div> + </form> + {% endif %} + </div> +{% endblock %} |