diff --git a/mycombinations/db.sqlite3 b/mycombinations/db.sqlite3 index 6b1922c3..61f8d885 100644 Binary files a/mycombinations/db.sqlite3 and b/mycombinations/db.sqlite3 differ diff --git a/mycombinations/web/models.py b/mycombinations/web/models.py index 4e68c0f0..0babe18e 100644 --- a/mycombinations/web/models.py +++ b/mycombinations/web/models.py @@ -35,4 +35,4 @@ class Combination(models.Model): mix = models.ForeignKey(Mix, on_delete=models.CASCADE) def __str__(self) -> str: - return self.name+" = " +self.alcohol.name+" with "+self.mix.name + return self.name+" with " +self.alcohol.brand.name+" and "+self.mix.brand.name