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

« back to all changes in this revision

Viewing changes to django/contrib/comments/templates/comments/delete.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:
1
1
{% extends "comments/base.html" %}
 
2
{% load i18n %}
2
3
 
3
 
{% block title %}Remove a comment{% endblock %}
 
4
{% block title %}{% trans "Remove a comment" %}{% endblock %}
4
5
 
5
6
{% block content %}
6
 
  <h1>Really remove this comment?</h1>
7
 
  <blockquote>{{ comment|escape|linebreaks }}</blockquote>
8
 
  <form action="." method="POST">
9
 
    <input type="hidden" name="next" value="{{ next|escape }}" id="next">
 
7
<h1>{% trans "Really remove this comment?" %}</h1>
 
8
  <blockquote>{{ comment|linebreaks }}</blockquote>
 
9
  <form action="." method="post">
 
10
    <input type="hidden" name="next" value="{{ next }}" id="next" />
10
11
    <p class="submit">
11
 
      <input type="submit" name="submit" value="Remove"> or <a href="{{ comment.permalink }}">cancel</a>
 
12
    <input type="submit" name="submit" value="{% trans "Remove" %}" /> or <a href="{{ comment.permalink }}">cancel</a>
12
13
    </p>
13
14
  </form>
14
 
{% endblock %}
 
 
b'\\ No newline at end of file'
 
15
{% endblock %}