Lets say for example I have a Model called \"Client\" and a model called \"PhoneNumbers\"
class PhoneNumbers(models.Model): number = forms.IntegerField() cl
We use this 3rd party widget for this:
https://github.com/crucialfelix/django-ajax-selects
Btw, your 'example' above is really bad DB design for a bunch of reasons. You should just have the phone number as a text field on the Client model and then you would have none of these issues. ;-)