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")), ]