I have a complex form that where I generate a grid (for lack of a
better term) of fields for data entry. To simplify the template
context I have a dictionaries within dictionaries so I can just use
FOR loops within FOR loops in the template.

My problem was that, unless I wrapped my fields in a BoundField, I
would only receive the field's object reference output instead of the
rendered widgets. So I added BoundField to the list of available
objects in forms.py and everything is hums along merrily.

My question is, am I breaking any Django commandments by opening up
the BoundField (other than not monkey patching)?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to