From 10906fa75da9cacb110e4e414fa7c7ca93c188e0 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Sat, 7 Aug 2010 01:29:23 +0000 Subject: [PATCH] Fixed #8426 - 'helptext' CSS class - hopefully for real this time. This file was missing from [13519] Thanks to mattmcc for the catch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13522 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/forms/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django/forms/forms.py b/django/forms/forms.py index 1a20b3b82a3dc..dc0800b436a6d 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -213,7 +213,7 @@ def as_table(self): normal_row = u'%(label)s%(errors)s%(field)s%(help_text)s', error_row = u'%s', row_ender = u'', - help_text_html = u'
%s', + help_text_html = u'
%s', errors_on_separate_row = False) def as_ul(self): @@ -222,7 +222,7 @@ def as_ul(self): normal_row = u'%(errors)s%(label)s %(field)s%(help_text)s', error_row = u'
  • %s
  • ', row_ender = '', - help_text_html = u' %s', + help_text_html = u' %s', errors_on_separate_row = False) def as_p(self): @@ -231,7 +231,7 @@ def as_p(self): normal_row = u'%(label)s %(field)s%(help_text)s

    ', error_row = u'%s', row_ender = '

    ', - help_text_html = u' %s', + help_text_html = u' %s', errors_on_separate_row = True) def non_field_errors(self):