Implement recipes app in beta version #17

Merged
Benjamin merged 20 commits from recipes into master 2023-03-25 12:00:44 +00:00
Showing only changes of commit f8d5ca0e83 - Show all commits

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