update url

This commit is contained in:
2021-06-13 21:14:36 +00:00
parent 6687210b19
commit d172fe76cf

View File

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