aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/content/urls.py
blob: ae9b1e5783ba27c0f1e850e86e2443e9ad6ea534 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from django.urls import path

from . import views

app_name = "content"
urlpatterns = [
    path("", views.ArticlesView.as_view(), name='content'),
    path("category/<str:category>/", views.CategoryView.as_view(), name='category'),
    path("category/<str:category>/<str:article>/", views.ArticleView.as_view(), name='category_article'),
    path("<str:article>/", views.ArticleView.as_view(), name='article')
]