Fix ownership display

This commit is contained in:
Lukáš Kucharczyk 2023-02-18 21:12:44 +01:00
parent f8844ce091
commit 1a6e5dc8fc
1 changed files with 1 additions and 1 deletions

View File

@ -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):