On 7/10/07, Mambaragi <[EMAIL PROTECTED]> wrote:
> widget=forms.CheckboxSelectMultiple,
>                                               choices=[(assignee.id,
> assignee.nickname) for assignee
>                                                in
> models.User.objects.filter(type__gte=models.User.DEVELOPER)])
>
> as you see, choices are dynamically generated.

No, they are not. They are generated when the form class itself is
parsed on loading by Python, and never again so long as that module
remains in memory. What you want instead is to use a ModelChoiceField,
or to write an __init__ method on the form which generates the choices
on creation of an *instance* of the form.

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
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