From 23978aa9dc1e698dac101c53a489ca5faaf56b75 Mon Sep 17 00:00:00 2001 From: Lucas Schumacher Date: Sun, 19 May 2024 18:07:45 -0400 Subject: [PATCH] Move the testapp path to root --- djangoTest/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangoTest/urls.py b/djangoTest/urls.py index 0b88e6a..4357a88 100644 --- a/djangoTest/urls.py +++ b/djangoTest/urls.py @@ -19,7 +19,7 @@ from django.urls import include, path urlpatterns = [ # Add the path that our testapp should be served at - path("test/", include("testapp.urls")), + path("", include("testapp.urls")), path('admin/', admin.site.urls), ]