I would like to create 2 lists in Django.
The first one lists all results returned from a db query (external query). The second pane is blank until a selection is done. This is single selection drop down
Once the user selects an item in the first drop down a list of all results for that selection is displayed (based on another db query). This selection is multi select. I am not sure what elements allow multi select in Django
Example. Select City in first list, get a list of all centres in second list, select multiple centres in second list and submit
The information being queried is from an external db, I could also use API, but my difficulty is not in the query but how to create the elements and update them based on selection. I am also using django-bootstrap3