fix trailing slashes

This commit is contained in:
Valentin Moguérou 2024-05-20 15:48:26 +02:00
parent efb4a54c91
commit 1be82d3bb0
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from . import views
from .views import ColleListView from .views import ColleListView
urlpatterns = [ urlpatterns = [
path("/", lambda req: redirect("colloscope:dashboard"), name="home"), path("", lambda req: redirect("colloscope:dashboard"), name="home"),
path("table/", views.colloscope, name="table"), path("table/", views.colloscope, name="table"),
path("dashboard/", views.dashboard, name="dashboard"), path("dashboard/", views.dashboard, name="dashboard"),
path("export.pdf", views.export, name="export"), path("export.pdf", views.export, name="export"),