Use correct view for tags and categories redirect

This commit is contained in:
Jake Howard 2023-11-01 09:20:33 +00:00
parent c3aea8f176
commit 6248a0665a
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ urlpatterns = [
path("posts/index.xml", views.PostsFeedView.as_view()),
path("index.xml", views.AllPagesFeedView.as_view()),
path("tags/<slug:slug>/", views.TagView.as_view()),
path("tags/", views.TagView.as_view()),
path("categories/", views.TagView.as_view()),
path("tags/", views.TagsView.as_view()),
path("categories/", views.TagsView.as_view()),
]