diff --git a/mordor/models.py b/mordor/models.py index 6075820..291965c 100644 --- a/mordor/models.py +++ b/mordor/models.py @@ -39,4 +39,4 @@ class Order(TimeStampMixin): self.amount_50 = 0 def __str__(self): - return f"Order {self.amount_33}x33cl, {self.amount_50}x50cl for {self.user.username} [{self.state_str()}]" + return f"{'Paid' if self.paid else 'Unpaid'} order {self.amount_33}x33cl, {self.amount_50}x50cl for {self.user.username} [{self.state_str()}]"