renamed list to category

This commit is contained in:
DerTyp187
2021-11-10 08:54:20 +01:00
parent 0423b92c2b
commit 4a7b65b721
6 changed files with 24 additions and 13 deletions

View File

@@ -3,5 +3,6 @@ from . import views
urlpatterns = [
path('', views.index, name="main-index"),
path('list/', views.list, name="main-list"),
path('topic/<str:category>/<str:topic>/', views.topic, name="main-topic"),
path('category/<str:category>/', views.category, name="main-category"),
]