From 1a6e5dc8fce065a8ca0c75ad98a7478fe5163111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sat, 18 Feb 2023 21:12:44 +0100 Subject: [PATCH] Fix ownership display --- games/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/models.py b/games/models.py index ac637e1..7866473 100644 --- a/games/models.py +++ b/games/models.py @@ -56,7 +56,7 @@ class Purchase(models.Model): ) def __str__(self): - return f"{self.edition} ({self.platform})" + return f"{self.edition} ({self.platform}, {self.get_ownership_type_display()})" class Platform(models.Model):