Re: django select related select field in template form

2017-09-21 Thread Melvyn Sopacua
http://django-autocomplete-light.readthedocs.io/en/master/tutorial.html#filtering-results-based-on-the-value-of-other-fields-in-the-form On Tue, Sep 19, 2017 at 7:53 PM, Anuj Sharma wrote: > I'm working in Django 1.11 > > I have three apps, country, state and address >

django select related select field in template form

2017-09-19 Thread Anuj Sharma
I'm working in *Django 1.11* I have three apps, *country*, *state* and *address* *state* model is associated with *country* by foreign key and *address* is associated with *state* with a foreign key. *country/models.py* class Country(models.Model): name =