[Answered ]-Limit choices inside an input django

1👍

I think the easiest way to do this is to override the constructor of your form, as shown in this answer: https://stackoverflow.com/a/1969081/18728725

Update:
Here is Wamz’s solution:

    def __init__(self, *args, **kwargs):
        super(DateInputForm, self).__init__(*args, **kwargs)
        if 'instance' in kwargs:
            new_kwargs = kwargs.get('instance')
            self.fields['tags'].queryset = Tag.objects.filter(user=new_kwargs.user.id)

Warning, that’s not working in the createView

Leave a comment