In a similar vein to the OP, I'm trying to populate a choices list for
a form (using newforms) from a database:

nameChoices = Names.objects.filter(initials='AB')
NameSelection.base_fields['names'].widget =
widgets.Select(choices=nameChoices.Name)

However, I am not having much succcess, I get this error:
AttributeError at /names/
'_QuerySet' object has no attribute Name'

Anyone have any ideas?

thanks,

Stu


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to