Ticket #3108: as_dl.patch
File as_dl.patch, 769 bytes (added by , 18 years ago) |
---|
-
django/newforms/forms.py
151 151 "Returns this form rendered as HTML <p>s." 152 152 return self._html_output(u'<p>%(label)s %(field)s%(help_text)s</p>', u'<p>%s</p>', '</p>', u' %s', True) 153 153 154 def as_dl(self): 155 "Returns this form renderd as HTML <dt>/<dd> pairs -- excluding the <dl></dl>." 156 return self._html_output(u'<dt>%(label)s</dt>\n<dd>%(errors)s</dd>\n<dd>%(field)s%(help_text)s</dd>', u'<dd>%s</dd>', '</dd>', u' %s', False) 157 154 158 def non_field_errors(self): 155 159 """ 156 160 Returns an ErrorList of errors that aren't associated with a particular