Add recipes/ url pattern

This commit is contained in:
Benjamin 2023-03-11 19:13:38 +01:00
parent fa2d95384a
commit 665ea994f2

View file

@ -19,6 +19,7 @@ from . import views
urlpatterns = [ urlpatterns = [
path('', views.index, name='index'), path('', views.index, name='index'),
path('recipes/', include('recipes.urls')),
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('accounts/new-user/', views.new_user, name='new-user'), path('accounts/new-user/', views.new_user, name='new-user'),
path('accounts/profile/', views.profile, name='profile'), path('accounts/profile/', views.profile, name='profile'),