Add beginnings of a shopping app
This commit is contained in:
parent
bfa660f53c
commit
1ce10bf254
9 changed files with 51 additions and 0 deletions
|
|
@ -44,6 +44,7 @@ INSTALLED_APPS = [
|
|||
"reinheit.apps.styles",
|
||||
"reinheit.apps.ingredients",
|
||||
"reinheit.apps.user",
|
||||
"reinheit.apps.shopping",
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
|
|
|||
|
|
@ -6,5 +6,6 @@ urlpatterns = [
|
|||
path("", RedirectView.as_view(url="/brews/")),
|
||||
path("admin/", admin.site.urls),
|
||||
path("brews/", include(("reinheit.apps.brew.urls", "brew"), namespace="brews")),
|
||||
path("shopping/", include(("reinheit.apps.shopping.urls", "shopping"), namespace="shopping")),
|
||||
path("oidc/", include("oauth2_authcodeflow.urls")),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue