We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d20e4 commit b8dddb9Copy full SHA for b8dddb9
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