diff options
author | 2020-10-06 16:18:11 +0300 | |
---|---|---|
committer | 2020-10-06 16:30:10 +0300 | |
commit | d6a56e63ae64b2e3df40a9a4468289456b2182dc (patch) | |
tree | 70dc56c22be831110eec82eb16646c69ff9da172 /pydis_site/apps/content/urls.py | |
parent | Merge 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.py | 2 |
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>/", |