~ubuntu-branches/debian/squeeze/python-django/squeeze

« back to all changes in this revision

Viewing changes to django/contrib/admin/templates/admin/delete_confirmation.html

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb, Chris Lamb, David Spreen, Sandro Tosi
  • Date: 2008-11-19 21:31:00 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081119213100-gp0lqhxl1qxa6dgl
Tags: 1.0.2-1
[ Chris Lamb ]
* New upstream bugfix release. Closes: #505783
* Add myself to Uploaders with ACK from Brett.

[ David Spreen ]
* Remove python-pysqlite2 from Recommends because Python 2.5 includes
  sqlite library used by Django. Closes: 497886

[ Sandro Tosi ]
* debian/control
  - switch Vcs-Browser field to viewsvn

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
{% block breadcrumbs %}
5
5
<div class="breadcrumbs">
6
6
     <a href="../../../../">{% trans "Home" %}</a> &rsaquo;
7
 
     <a href="../../../">{{ app_label|capfirst|escape }}</a> &rsaquo; 
 
7
     <a href="../../../">{{ app_label|capfirst }}</a> &rsaquo; 
8
8
     <a href="../../">{{ opts.verbose_name_plural|capfirst }}</a> &rsaquo;
9
 
     <a href="../">{{ object|escape|truncatewords:"18" }}</a> &rsaquo;
 
9
     <a href="../">{{ object|truncatewords:"18" }}</a> &rsaquo;
10
10
     {% trans 'Delete' %}
11
11
</div>
12
12
{% endblock %}
13
13
 
14
14
{% block content %}
15
15
{% if perms_lacking %}
16
 
    <p>{% blocktrans with object|escape 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 %}</p>
 
16
    <p>{% 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 %}</p>
17
17
    <ul>
18
18
    {% for obj in perms_lacking %}
19
19
        <li>{{ obj }}</li>
20
20
    {% endfor %}
21
21
    </ul>
22
22
{% else %}
23
 
    <p>{% blocktrans with object|escape 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 %}</p>
 
23
    <p>{% 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 %}</p>
24
24
    <ul>{{ deleted_objects|unordered_list }}</ul>
25
25
    <form action="" method="post">
26
26
    <div>