Add recipes/ url pattern

This commit is contained in:
Benjamin 2023-03-11 19:13:38 +01:00
parent f6f1590f02
commit f8d5ca0e83

View file

@ -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'),