This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/src/blog/urls.py

40 lines
1.3 KiB
Python
Raw Normal View History

2020-08-14 14:53:30 +02:00
"""blog URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.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'))
"""
2021-03-20 11:23:33 +01:00
import debug_toolbar
2020-08-26 19:04:48 +02:00
from django.conf.urls.static import static
2020-08-14 14:53:30 +02:00
from django.contrib import admin
2020-12-30 14:54:22 +01:00
from django.urls import include, path
2020-09-05 09:04:45 +02:00
from django.views.generic import TemplateView
2021-12-26 23:24:33 +01:00
from two_factor.urls import urlpatterns as tf_urls
2020-08-14 14:53:30 +02:00
2020-08-26 19:04:48 +02:00
from blog import settings
2020-08-14 15:53:42 +02:00
2020-08-14 14:53:30 +02:00
urlpatterns = [
2021-12-26 23:24:33 +01:00
path("", include(tf_urls)),
2020-09-05 09:04:45 +02:00
path(
"robots.txt",
TemplateView.as_view(
template_name="blog/robots.txt", content_type="text/plain"
),
),
2020-08-14 14:53:30 +02:00
path("admin/", admin.site.urls),
2020-12-30 14:54:22 +01:00
path("", include("articles.urls")),
2020-08-14 14:53:30 +02:00
]
2020-08-26 19:04:48 +02:00
if settings.DEBUG:
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
2021-03-20 11:23:33 +01:00
urlpatterns += [path("__debug__/", include(debug_toolbar.urls))]