houtmarkt-jeremy/houtmarkt/urls.py

38 lines
1.3 KiB
Python
Raw Normal View History

2020-05-24 15:00:10 +00:00
"""houtmarkt URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/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'))
"""
2020-05-25 05:15:12 +00:00
from django.conf import settings
2020-05-24 15:00:10 +00:00
from django.contrib import admin
from django.urls import path
2020-05-25 05:15:12 +00:00
from django.conf.urls.static import static
2020-05-24 15:00:10 +00:00
from django.urls import include
urlpatterns = [
path('markt/', include('markt.urls')),
2020-05-27 17:57:30 +00:00
path('houtmarkt/admin/', admin.site.urls),
2020-05-25 05:15:12 +00:00
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
2020-05-24 15:00:10 +00:00
from django.views.generic import RedirectView
urlpatterns += [
2020-05-27 17:57:30 +00:00
path('', RedirectView.as_view(url='/houtmarkt/admin/', permanent=True)),
2020-05-24 15:00:10 +00:00
]
# Use static() to add url mapping to serve static files during development (only)
from django.conf import settings
from django.conf.urls.static import static
2020-05-27 17:57:30 +00:00
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)