Add rating + preferences fields, log first cook feedback

- Ingredient.preferences: qualitative notes on how Tom likes things cooked
- CookLog.rating: 1-5 score
- CookLog.notes: help text updated for feedback
- Migration 0002
- First cook logged: Baked Pasta with lardons, rated 2/5
- Bacon lardons preference: don't oven bake, fry separately, not solo protein
This commit is contained in:
Caine
2026-04-02 22:50:49 +01:00
parent 189d72b797
commit 75e3256eae
3 changed files with 40 additions and 1 deletions
+1
View File
@@ -29,6 +29,7 @@ class IngredientSerializer(serializers.ModelSerializer):
class Meta:
model = Ingredient
fields = "__all__"
# preferences field included via __all__
class PantryItemSerializer(serializers.ModelSerializer):