Saturday, December 12, 2009

Lazy choices in Django form

A cool library that django has the doesn't seem to be documented very well
from django.utils.functional import lazy

class CarSearchForm(forms.Form):  
    # lots of fields like this
    bodystyle = forms.ChoiceField(choices=lazy(bodystyle_choices, tuple)())
Lazy choices in Django form - Stack Overflow

No comments: