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/blog/urls.py

37 lines
1.4 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'))
"""
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
from django.urls import path
2020-08-16 19:24:31 +02:00
from articles.views import feeds, html
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 = [
path("admin/", admin.site.urls),
2020-08-16 19:24:31 +02:00
path("", html.ArticlesListView.as_view(), name="articles-list"),
path("drafts/", html.DraftsListView.as_view(), name="drafts-list"),
path("feed/", feeds.CompleteFeed(), name="complete-feed"),
2020-08-18 19:44:13 +02:00
path("<slug:slug>", html.ArticleDetailView.as_view(), name="article-detail-old"),
2020-08-18 18:49:41 +02:00
path("<slug:slug>/", html.ArticleDetailView.as_view(), name="article-detail"),
path(
2020-08-18 19:44:13 +02:00
"<slug:slug>/comment/", html.ArticleDetailView.as_view(), name="create-comment"
2020-08-18 18:49:41 +02:00
),
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)