Skip to content

Commit

Permalink
Merge pull request #289 from VSEScala/mhvis/202401/dish-kind-choice
Browse files Browse the repository at this point in the history
Two additional options for kind of dish
  • Loading branch information
mhvis authored Jan 19, 2024
2 parents d43a7e2 + bbbf272 commit 8b16926
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dining/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@ class DiningList(models.Model):
blank=True,
choices=[
("", "Not specified"),
("meat", "πŸ— Contains meat"),
("fish", "🐟 Contains fish"),
("meat", "πŸ— With meat"),
("fish", "🐟 With fish"),
("vegetarian", "πŸ₯• Vegetarian"),
("vegan", "🌿 Vegan"),
("meat_or_vegetarian", "Meat or vegetarian"),
("meat_or_vegan", "Meat or vegan"),
],
)

Expand Down

0 comments on commit 8b16926

Please sign in to comment.