diff --git a/django/contrib/comments/templates/comments/400-debug.html b/django/contrib/comments/templates/comments/400-debug.html
index 3c4532b..9e33f46 100644
a
|
b
|
|
1 | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
2 | | <html lang="en"> |
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
3 | 4 | <head> |
4 | 5 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> |
5 | 6 | <title>Comment post not allowed (400)</title> |
diff --git a/django/contrib/comments/templates/comments/approve.html b/django/contrib/comments/templates/comments/approve.html
index a4306a6..aa465fc 100644
a
|
b
|
|
7 | 7 | <h1>{% trans "Really make this comment public?" %}</h1> |
8 | 8 | <blockquote>{{ comment|linebreaks }}</blockquote> |
9 | 9 | <form action="." method="post"> |
10 | | {% if next %}<input type="hidden" name="next" value="{{ next }}" id="next" />{% endif %} |
| 10 | {% if next %}<p><input type="hidden" name="next" value="{{ next }}" id="next" /></p>{% endif %} |
11 | 11 | <p class="submit"> |
12 | 12 | <input type="submit" name="submit" value="{% trans "Approve" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
13 | 13 | </p> |
diff --git a/django/contrib/comments/templates/comments/base.html b/django/contrib/comments/templates/comments/base.html
index 36fc66f..baf1f40 100644
a
|
b
|
|
1 | | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
2 | | <html lang="en"> |
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
| 2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
3 | 4 | <head> |
4 | 5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
5 | 6 | <title>{% block title %}{% endblock %}</title> |
diff --git a/django/contrib/comments/templates/comments/delete.html b/django/contrib/comments/templates/comments/delete.html
index 7d73eac..51fb485 100644
a
|
b
|
|
7 | 7 | <h1>{% trans "Really remove this comment?" %}</h1> |
8 | 8 | <blockquote>{{ comment|linebreaks }}</blockquote> |
9 | 9 | <form action="." method="post"> |
10 | | {% if next %}<input type="hidden" name="next" value="{{ next }}" id="next" />{% endif %} |
| 10 | {% if next %}<p><input type="hidden" name="next" value="{{ next }}" id="next" /></p>{% endif %} |
11 | 11 | <p class="submit"> |
12 | 12 | <input type="submit" name="submit" value="{% trans "Remove" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
13 | 13 | </p> |
diff --git a/django/contrib/comments/templates/comments/flag.html b/django/contrib/comments/templates/comments/flag.html
index 08dbe0b..5761f90 100644
a
|
b
|
|
7 | 7 | <h1>{% trans "Really flag this comment?" %}</h1> |
8 | 8 | <blockquote>{{ comment|linebreaks }}</blockquote> |
9 | 9 | <form action="." method="post"> |
10 | | {% if next %}<input type="hidden" name="next" value="{{ next }}" id="next" />{% endif %} |
| 10 | {% if next %}<p><input type="hidden" name="next" value="{{ next }}" id="next" /></p>{% endif %} |
11 | 11 | <p class="submit"> |
12 | 12 | <input type="submit" name="submit" value="{% trans "Flag" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a> |
13 | 13 | </p> |
diff --git a/django/contrib/comments/templates/comments/form.html b/django/contrib/comments/templates/comments/form.html
index d8e2483..b60e6c8 100644
a
|
b
|
|
3 | 3 | {% if next %}<input type="hidden" name="next" value="{{ next }}" />{% endif %} |
4 | 4 | {% for field in form %} |
5 | 5 | {% if field.is_hidden %} |
6 | | {{ field }} |
| 6 | <p>{{ field }}</p> |
7 | 7 | {% else %} |
8 | 8 | {% if field.errors %}{{ field.errors }}{% endif %} |
9 | 9 | <p |
diff --git a/django/contrib/comments/templates/comments/preview.html b/django/contrib/comments/templates/comments/preview.html
index d388457..0822faa 100644
a
|
b
|
|
18 | 18 | {% endif %} |
19 | 19 | {% for field in form %} |
20 | 20 | {% if field.is_hidden %} |
21 | | {{ field }} |
| 21 | <p>{{ field }}</p> |
22 | 22 | {% else %} |
23 | 23 | {% if field.errors %}{{ field.errors }}{% endif %} |
24 | 24 | <p |