diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-11-23 21:56:21 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-11-23 21:56:21 +0000 |
| commit | cfc5786d03f3dc190f3ed1606edc3a196f16915e (patch) | |
| tree | edd028f4689ebf1ff4efebe5646034f36a370fb8 | |
| parent | 08a494c40d33552133fbbe40116d9315c8b9560c (diff) | |
Fixed missing {% load i18n %} tag in comments FREE_COMMENT_FORM template
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1378 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/comments/templatetags/comments.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/comments/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py index 72c586e206..126009a5b9 100644 --- a/django/contrib/comments/templatetags/comments.py +++ b/django/contrib/comments/templatetags/comments.py @@ -44,6 +44,7 @@ COMMENT_FORM = ''' ''' FREE_COMMENT_FORM = ''' +{% load i18n %} {% if display_form %} <form action="/comments/postfree/" method="post"> <p>{% trans "Your name:" %} <input type="text" id="id_person_name" name="person_name" /></p> |
