From ab41d24e80d7ea7b56964662802399c88b68c8d0 Mon Sep 17 00:00:00 2001 From: Hubert Jankowski Date: Sat, 11 Dec 2021 23:14:47 +0100 Subject: [PATCH] Added slash --- config/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/urls.py b/config/urls.py index 06b2236..8f3d25f 100644 --- a/config/urls.py +++ b/config/urls.py @@ -24,7 +24,7 @@ urlpatterns = [ path('logout', logout), path('register', register), path('users', include("users.urls")), - path('questions', include("questions.urls")), - path('answers', include("answers.urls")), - path('tests', include("trials.urls")), + path('questions/', include("questions.urls")), + path('answers/', include("answers.urls")), + path('tests/', include("trials.urls")), ]