diff --git a/cookbook/serializer.py b/cookbook/serializer.py
index 7a311e011..76f77284a 100644
--- a/cookbook/serializer.py
+++ b/cookbook/serializer.py
@@ -99,7 +99,7 @@ class RecipeSerializer(WritableNestedModelSerializer):
class Meta:
model = Recipe
- fields = ['name', 'image', 'keywords', 'steps', 'working_time', 'waiting_time', 'created_by', 'created_at', 'updated_at', 'internal']
+ fields = ['id', 'name', 'image', 'keywords', 'steps', 'working_time', 'waiting_time', 'created_by', 'created_at', 'updated_at', 'internal']
read_only_fields = ['image', 'created_by', 'created_at']
diff --git a/cookbook/templates/base.html b/cookbook/templates/base.html
index 67d82a692..8f5980371 100644
--- a/cookbook/templates/base.html
+++ b/cookbook/templates/base.html
@@ -161,7 +161,7 @@
-