We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3b06cf commit 8d78d59Copy full SHA for 8d78d59
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