1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | from django import newforms as forms
class PrettyBaseForm (forms.BaseForm):
class NormalRowFormatter(object):
def _error_class(self, errors):
if errors:
return ' class="error"'
else:
return ''
def __mod__(self, d):
return u'<tr%s>' % self._error_class(d['errors']) \
+ u'<th>%(label)s</th><td>%(field)s%(errors)s%(help_text)s</td></tr>' % d
def as_table(self):
return self._html_output(
PrettyBaseForm.NormalRowFormatter(),
u'<tr><td colspan="2">%s</td></tr>', # unused
u'</td></tr>',
u'<br />%s',
False
)
|
More like this
- Hidden Forms by insin 5 years, 10 months ago
- FieldsetForm by Ciantic 6 years, 1 month ago
- Form rendering using a template instead of builtin HTML by leoh 5 years, 11 months ago
- TemplateForm by flashingpumpkin 3 years, 8 months ago
- ModelList class by facundo_olano 2 years, 2 months ago
Comments