basic local recipes

This commit is contained in:
vabene1111
2019-11-13 22:38:43 +01:00
parent b98f87499a
commit b54da49858
9 changed files with 122 additions and 9 deletions

View File

@@ -18,8 +18,7 @@ from django.urls import include, path
from django.contrib import admin
urlpatterns = [
path('', lambda r: HttpResponseRedirect('cookbook/')),
path('', include('cookbook.urls')),
path('admin/', admin.site.urls),
path('cookbook/', include('cookbook.urls')),
path('accounts/', include('django.contrib.auth.urls')),
]