""" Barn Web App - A collection of web-apps for my family's personal use, including a recipe database. Copyright © 2023 Benjamin Stadlbauer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. This program comes with a copy of the GNU Affero General Public License file at the root of this project. stadlbauer URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/4.1/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path, include from django.conf import settings from django.conf.urls.static import static from django.views.generic import TemplateView 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'), path('accounts/', include('django.contrib.auth.urls')), path('about/', TemplateView.as_view(template_name='about.html'), name='about'), ] urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)