Commit 0b798b88 authored by Joei Yucoco's avatar Joei Yucoco

revised site-wide urls so that each app is accessible with <appname>/ instead

parent 304db8d4
Pipeline #2655 failed with stages
No preview for this file type
......@@ -18,7 +18,7 @@ from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('Homepage.urls', namespace="Homepage")),
path('About/', include('About.urls', namespace="About")),
path('Contact/', include('Contact.urls', namespace="Contact")),
path('homepage/', include('Homepage.urls', namespace="Homepage")),
path('about/', include('About.urls', namespace="About")),
path('contact/', include('Contact.urls', namespace="Contact")),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment