EuroDjangoCon 2009

1 · Alex Gaynor · May 5, 2009, midnight
EuroDjangoCon 2009 is still going strong, but I wanted to share the materials from my talk as quickly as possible. My slides are on Slide Share: Forms, Getting Your Money's WorthView more documents from Alex Gaynor.And the first examples code follows: from django.forms.util import ErrorList from django.utils.datastructures import SortedDict def multiple_form_factory(form_classes, form_order=None): if form_order: form_classes = SortedDict([(prefix, form_classes[prefix]) for prefix in form_order])...