[Answered ]-How to present only one data with foreign key in Django?

1👍

You should define this in the __str__ of the model, so:

class Clientes(models.Model):
    # …
    
    def __str__(self):
        return self.name

Leave a comment