I have this fields in form:
city = forms.ModelChoiceField(label="city", queryset=MyCity.objects.all())
district = forms.ModelChoiceField(label="district", queryset=MyDistrict.objects.all())
area = forms.ModelChoiceField(label="area", queryset=MyArea.objects.all())
district comes from click on city and area comes from click on area. With queryset=MyDistrict.objects.all()
and queryset=MyArea.objects.all()
form will be very heavy. How can I make querysets empty by default?