aboutsummaryrefslogtreecommitdiff
path: root/ignis/urls.py
diff options
context:
space:
mode:
authorBobby <[email protected]>2022-11-20 22:06:19 -0500
committerBobby <[email protected]>2022-11-20 22:06:19 -0500
commit74d94c15a983df523a09a45d6c83759de1b0a534 (patch)
tree5c67daf28fc4e4a567f5890e99db434cedc08582 /ignis/urls.py
parent7e677d2af294ea47c598c55872ba3b634c3ee4ae (diff)
downloadthatcomputerscientist-74d94c15a983df523a09a45d6c83759de1b0a534.tar.xz
thatcomputerscientist-74d94c15a983df523a09a45d6c83759de1b0a534.zip
added repository main screen
Diffstat (limited to 'ignis/urls.py')
-rw-r--r--ignis/urls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ignis/urls.py b/ignis/urls.py
index 4e931c4d..b3b1eace 100644
--- a/ignis/urls.py
+++ b/ignis/urls.py
@@ -3,6 +3,6 @@ from . import views
app_name = 'ignis'
urlpatterns = [
- path('tex/', views.tex, name='tex'),
- path('post_image/<int:post_id>/', views.post_image, name='post_image'),
+ path('/tex', views.tex, name='tex'),
+ path('/post_image/<int:post_id>/', views.post_image, name='post_image'),
]