We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2c4cb6 commit e70b6b2Copy full SHA for e70b6b2
junction/tickets/models.py
@@ -24,4 +24,4 @@ class Ticket(AuditModel):
24
others = JSONField()
25
26
def __str__(self):
27
- return self.name, self.email, self.ticket_no
+ return "{} : {} : {}".format(self.name, self.email, self.ticket_no)
0 commit comments