Commit a3e539a7 authored by Joei Yucoco's avatar Joei Yucoco

Added About to Site-wide urls and settings

the About app can be accessed via web by appending an 'About/' after the server link
parent f55a7a85
No preview for this file type
......@@ -41,7 +41,8 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'Homepage'
'Homepage',
'About',
]
MIDDLEWARE = [
......
......@@ -19,4 +19,5 @@ 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")),
]
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