Let's say you have the following model structure, modified from the README example:
class Street(models.Model):
street_name = models.CharField(max_length=255)
class Address(models.Model):
street = models.ForeignKey(Street)
class Person(models.Model):
name = models.CharField(max_length=255)
home_addr = models.OneToOneField(Address, related_name='home_addr')
If the amount of "Street" objects you have is too large, a Select2 dropdown is preferred, and currently there's no way of having them. Adding the fields to autocomplete_fields does nothing.
Let's say you have the following model structure, modified from the README example:
If the amount of "Street" objects you have is too large, a Select2 dropdown is preferred, and currently there's no way of having them. Adding the fields to
autocomplete_fieldsdoes nothing.