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