hotdev405

Results 1 issues of hotdev405

I am working on a ticketing system. ` class Customer(models.Model): name = models.CharField() address email, etc class Ticket(): customer = models.ForeignKey(Customer) ` In django admin, i would like to have...

question