diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-07 19:34:21 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-07 19:34:21 +0000 |
| commit | 92a38be9c694639cad13ffdb03f492e462932db0 (patch) | |
| tree | 1e1dda055d17ccefa160996a9f76502aedd42330 | |
| parent | f8adf99cdb449924b2ed2ddac33744da7eeb1efc (diff) | |
Fixed #9792: corrected invalid HTML in the comment form and comment preview.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10420 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/comments/templates/comments/form.html | 2 | ||||
| -rw-r--r-- | django/contrib/comments/templates/comments/preview.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/comments/templates/comments/form.html b/django/contrib/comments/templates/comments/form.html index f0da620ec0..d8e248372f 100644 --- a/django/contrib/comments/templates/comments/form.html +++ b/django/contrib/comments/templates/comments/form.html @@ -5,10 +5,10 @@ {% if field.is_hidden %} {{ field }} {% else %} + {% if field.errors %}{{ field.errors }}{% endif %} <p {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> - {% if field.errors %}{{ field.errors }}{% endif %} {{ field.label_tag }} {{ field }} </p> {% endif %} diff --git a/django/contrib/comments/templates/comments/preview.html b/django/contrib/comments/templates/comments/preview.html index 9f9af1352d..d3884575f5 100644 --- a/django/contrib/comments/templates/comments/preview.html +++ b/django/contrib/comments/templates/comments/preview.html @@ -20,10 +20,10 @@ {% if field.is_hidden %} {{ field }} {% else %} + {% if field.errors %}{{ field.errors }}{% endif %} <p {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> - {% if field.errors %}{{ field.errors }}{% endif %} {{ field.label_tag }} {{ field }} </p> {% endif %} |
