diff --git a/cookbook/templates/rest_framework/api.html b/cookbook/templates/rest_framework/api.html
index a589e706..daf70727 100644
--- a/cookbook/templates/rest_framework/api.html
+++ b/cookbook/templates/rest_framework/api.html
@@ -8,7 +8,11 @@
{% block userlinks %}
-
-
+ {% trans 'API Documentation' %}
+
+ -
+
Django REST framework
diff --git a/cookbook/views/api.py b/cookbook/views/api.py
index 12aa2942..a0a568e5 100644
--- a/cookbook/views/api.py
+++ b/cookbook/views/api.py
@@ -24,8 +24,9 @@ from cookbook.serializer import MealPlanSerializer, MealTypeSerializer, RecipeSe
class UserNameViewSet(viewsets.ModelViewSet):
"""
- list:
+ list:
optional parameters
+
- **filter_list**: array of user id's to get names for
"""
queryset = User.objects.all()
@@ -61,7 +62,9 @@ class MealPlanViewSet(viewsets.ModelViewSet):
"""
list:
optional parameters
+
- **html_week**: filter for a calendar week (format 2020-W24 as html input type week)
+
"""
queryset = MealPlan.objects.all()
serializer_class = MealPlanSerializer
@@ -94,6 +97,7 @@ class RecipeViewSet(viewsets.ModelViewSet):
"""
list:
optional parameters
+
- **query**: search a recipe for a string contained in the recipe name (case in-sensitive)
- **limit**: limits the amount of returned recipes
"""