Fix ownership display
continuous-integration/drone/push Build is passing Details

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

View File

@ -56,7 +56,7 @@ class Purchase(models.Model):
) )
def __str__(self): def __str__(self):
return f"{self.edition} ({self.platform})" return f"{self.edition} ({self.platform}, {self.get_ownership_type_display()})"
class Platform(models.Model): class Platform(models.Model):