1 2 3 4 5 6 7 8 9 10 11 12
from django.urls import path from .views import ( TopicListView, ) app_name = "forum" urlpatterns = [ path(r't/', TopicListView.as_view(), name='topic-list',), path(r'', TopicListView.as_view(), name='topic-redirect',), ]