fix trailing slashes

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

View File

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