1👍
✅
You should define this in the __str__
of the model, so:
class Clientes(models.Model):
# …
def __str__(self):
return self.name
Source:stackexchange.com