On Dec 18, 9:41 am, Chris <macmichae...@gmail.com> wrote:
> Hello all,
> I am trying to popular a multi-select form field by passing in a user
> object suchas request.user so that I can filter a table based on that
> object. Below is what I came up with but it is still not working.
> I get the following error: 'ChoiceForm' object has no attribute
> 'accounts'
>
> http://dpaste.com/hold/100289/
>
> Any ideas on what I am doing wrong and how I can correct this? Thanks
> in advance.

Fields aren't attributes on the form, they're items in the form.fields
dictionary. So line 5 should start
self.fields['accounts'].choices

Note that there are other problems with the form as you've written it.
Specifically, it won't ever accept any values passed to it, because
you've overridden __init__ without preserving the existing arguments.
You should always make sure you're either copying the existing
function signature, or use the *args, **kwargs pattern, both in your
function definition and in the call to super.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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