On Dec 10, 1:56 am, GuyBowden <[EMAIL PROTECTED]> wrote: > I'd like to set the limit_choices_to value of a ForeignKey field based > on another selection in the current instance.
Perhaps someone will come with better idea, but for now to achieve this result i am modifying queryset in form derived from model: class SomeEditForm(ModelForm): class Meta: model = my_models.MyModel def __init__(self, *args, **kwargs): self.fields['author'].queryset = my_models.MyModel.objects.filter(user=self.tied_user) other thing to look at is that what is passed to limit_choices_to might be a callable, but it doesn't receive instance as parameter (and i would like it did). -- Maciej "Fiedzia" Dziardziel --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---