aboutsummaryrefslogtreecommitdiff
path: root/dev_status/urls.py
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-12-16 18:38:05 +0000
committerBobby <[email protected]>2024-12-16 18:38:05 +0000
commitea8f5e8517161c1bd52f61198138dfd2fc72f8e2 (patch)
tree19dd955137c8c6bb9c1143bbced320737cd93b09 /dev_status/urls.py
parent04788ddd83c5e80a09a468d07427f0e365db71d7 (diff)
downloadthatcomputerscientist-ea8f5e8517161c1bd52f61198138dfd2fc72f8e2.tar.xz
thatcomputerscientist-ea8f5e8517161c1bd52f61198138dfd2fc72f8e2.zip
its all in a state of chaos, but it shall be working soon
Diffstat (limited to 'dev_status/urls.py')
-rw-r--r--dev_status/urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev_status/urls.py b/dev_status/urls.py
index 62c4c3a2..904114fc 100644
--- a/dev_status/urls.py
+++ b/dev_status/urls.py
@@ -3,9 +3,9 @@ from django.views.generic import RedirectView
from . import views
-app_name = 'dev_status'
+app_name = "dev_status"
urlpatterns = [
- path('', views.home, name='home'),
- path('/<str:r>', views.get_repo, name='repo'),
- path('/<str:r>/<path:p>', views.get_repo, name='repo-path'),
+ # path('', views.home, name='home'),
+ # path('/<str:r>', views.get_repo, name='repo'),
+ # path('/<str:r>/<path:p>', views.get_repo, name='repo-path'),
]