update url

This commit is contained in:
2021-06-13 21:14:36 +00:00
committed by Patrick Mayr
parent 12a0341f89
commit f270f014fe

View File

@@ -5,6 +5,6 @@ from . import views
urlpatterns = [
path("", views.index, name="intern"),
path("<str:slug>", views.show_topic, name="topic"),
path("<str:topic_slug>/<str:slug>", views.show_docu, name="docu"),
path("<slug:slug>/", views.show_topic, name="topic"),
path("<slug:topic_slug>/<slug:slug>/", views.show_docu, name="docu"),
]