diff options
author | luxagraf <sng@luxagraf.net> | 2012-09-22 22:37:52 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2012-09-22 22:37:52 -0400 |
commit | 52d5613672758ac6c8ebffc7f33d94d47bde6180 (patch) | |
tree | 0b6e1fbc4ed013b2ba701dedeb39be9781ff8204 /app/lib/grappelli/templates/admin/delete_selected_confirmation.html | |
parent | efb623af0bcb47d510501c282e1326b11343a29c (diff) |
moved outside dependencies to virtualenv and dumped some unused apps out of lib
Diffstat (limited to 'app/lib/grappelli/templates/admin/delete_selected_confirmation.html')
-rw-r--r-- | app/lib/grappelli/templates/admin/delete_selected_confirmation.html | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/app/lib/grappelli/templates/admin/delete_selected_confirmation.html b/app/lib/grappelli/templates/admin/delete_selected_confirmation.html deleted file mode 100644 index 4e34d9f..0000000 --- a/app/lib/grappelli/templates/admin/delete_selected_confirmation.html +++ /dev/null @@ -1,54 +0,0 @@ -{% 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> › - {% trans 'Delete multiple objects' %} - </div> -{% endblock %} - -<!-- CONTENT --> -{% block content %} - <div class="container-grid delete-confirmation"> - {% if perms_lacking %} - <div class="module"> - <h2>{% blocktrans %}Deleting the {{ object_name }} 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 %}Are you sure you want to delete the selected {{ object_name }} objects? All of the following objects and their related items will be deleted:{% endblocktrans %}</h2> - {% for deleteable_object in deletable_objects %} - <div class="row"> - <ul class="rte">{{ deleteable_object|unordered_list }}</ul> - </div> - {% endfor %} - </div> - <form action="" method="post">{% csrf_token %} - <div class="module footer"> - {% for obj in queryset %} - <input type="hidden" name="{{ action_checkbox_name }}" value="{{ obj.pk }}" /> - {% endfor %} - <input type="hidden" name="action" value="delete_selected" /> - <input type="hidden" name="post" value="yes" /> - <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 %}
\ No newline at end of file |