diff --git a/djangoshaker/views.py b/djangoshaker/views.py --- a/djangoshaker/views.py +++ b/djangoshaker/views.py @@ -61,6 +61,8 @@ class UserView(TemplateView): print recipe.name available_recipes.append(recipe) context['available_recipes'] = available_recipes + else: + context['ingredients'] = Ingredient.objects.all() return context