I saw this changeset go in and am wondering if it is possible to
specify a sequence order for the fields to display. Example:
class Person(Form):
first_name = CharField()
last_name = CharField()
class PersonWithMiddle(Person):
middle_name = CharField()
But where you want this to display like this:
>>> print p.as_ul()
<li>First name: <input type="text" name="first_name" /></li>
<li>Middle name: <input type="text" name="middle_name" /></li>
<li>Last name: <input type="text" name="last_name" /></li>
Instead of middle name getting appended to the end.
I personally don't have a specific need for this currently. Mostly
curious.
-Rob
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---