I have a sorting problem with a completely basic ModelForm instance (the class has only Meta with model and fields) -- the object's __iter__ seems to be following object.fields (as defined in the model), rather than Meta.fields (as the documentation leads me to expect). Is it me, or is there something wrong here?
The project is at a very early stage -- pretty much as per the tutorials at the moment, so I can't see that anything should be interfering with this. Example (see comment field): for x in TESTADDRESS.htmform : print x.label_tag() print '******' for x in TESTADDRESS.htmform.Meta.__dict__.get('fields') : print x Result: <label for="id_comment">Comment</label> <label for="id_address_name">Address name</label> <label for="id_address_name2">Address name2</label> <label for="id_address_postaddress">Address postaddress</label> <label for="id_address_postcode">Address postcode</label> <label for="id_address_contact">Address contact</label> <label for="id_address_telephone">Address telephone</label> <label for="id_address_telefax">Address telefax</label> <label for="id_address_mobile">Address mobile</label> <label for="id_address_email">Address email</label> <label for="id_address_url">Address url</label> <label for="id_address_nickname">Address nickname</label> <label for="id_address_organisationnumber">Address organisationnumber</ label> ****** address_nickname address_name address_name2 address_postaddress address_postcode address_contact address_telephone address_telefax address_mobile address_email address_url address_organisationnumber comment --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---