From f8d5ca0e833fb2850d2cea82f25daba1aa9dc8e2 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sat, 11 Mar 2023 19:13:38 +0100 Subject: [PATCH] Add recipes/ url pattern --- stadlbauer/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/stadlbauer/urls.py b/stadlbauer/urls.py index 62c9e6b..f0a68b1 100644 --- a/stadlbauer/urls.py +++ b/stadlbauer/urls.py @@ -38,6 +38,7 @@ from . import views urlpatterns = [ path('', views.index, name='index'), + path('recipes/', include('recipes.urls')), path('admin/', admin.site.urls), path('accounts/new-user/', views.new_user, name='new-user'), path('accounts/profile/', views.profile, name='profile'),