About app setup complete

parent bc95dc79
......@@ -43,6 +43,7 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'Homepage',
'About',
'Contact'
]
......
......@@ -3,6 +3,7 @@ from django.urls import include, path
urlpatterns = [
path('Homepage/', include('Homepage.urls', namespace="Homepage")),
path('About/', include('About.urls', namespace="About")),
path('Contact/', include('Contact.urls', namespace="Contact")),
path('admin/', admin.site.urls),
]
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