aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/content/urls.py
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-10-06 16:18:11 +0300
committerGravatar ks129 <[email protected]>2020-10-06 16:30:10 +0300
commitd6a56e63ae64b2e3df40a9a4468289456b2182dc (patch)
tree70dc56c22be831110eec82eb16646c69ff9da172 /pydis_site/apps/content/urls.py
parentMerge branch 'dewikification' into guides-app (diff)
Rename content -> articles for visual part
Diffstat (limited to 'pydis_site/apps/content/urls.py')
-rw-r--r--pydis_site/apps/content/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/urls.py b/pydis_site/apps/content/urls.py
index 5a4ee37a..cd41751b 100644
--- a/pydis_site/apps/content/urls.py
+++ b/pydis_site/apps/content/urls.py
@@ -4,7 +4,7 @@ from . import views
app_name = "content"
urlpatterns = [
- path("", views.ArticlesView.as_view(), name='content'),
+ path("", views.ArticlesView.as_view(), name='articles'),
path("category/<str:category>/", views.CategoryView.as_view(), name='category'),
path(
"category/<str:category>/<str:article>/",