Commit cf345377 authored by Joei Yucoco's avatar Joei Yucoco

Added Contact to site-wide urls and settings

Access the Contact page by appending 'Contact/' after the server url
parent 9f433336
No preview for this file type
...@@ -43,6 +43,7 @@ INSTALLED_APPS = [ ...@@ -43,6 +43,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'Homepage', 'Homepage',
'About', 'About',
'Contact',
] ]
MIDDLEWARE = [ MIDDLEWARE = [
......
...@@ -20,4 +20,5 @@ urlpatterns = [ ...@@ -20,4 +20,5 @@ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('', include('Homepage.urls', namespace="Homepage")), path('', include('Homepage.urls', namespace="Homepage")),
path('About/', include('About.urls', namespace="About")), 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