Commit 068842bb authored by justin's avatar justin

Added apps to base settings.py, redirected base urls.py to include individual app urls.py

parent c78c19c6
...@@ -34,6 +34,9 @@ ALLOWED_HOSTS = [] ...@@ -34,6 +34,9 @@ ALLOWED_HOSTS = []
# Application definition # Application definition
INSTALLED_APPS = [ INSTALLED_APPS = [
"homepage.apps.HomepageConfig",
"contact.apps.ContactConfig",
"about.apps.AboutConfig",
"django.contrib.admin", "django.contrib.admin",
"django.contrib.auth", "django.contrib.auth",
"django.contrib.contenttypes", "django.contrib.contenttypes",
......
...@@ -14,8 +14,11 @@ Including another URLconf ...@@ -14,8 +14,11 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path from django.urls import include, path
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path("admin/", admin.site.urls),
path("about/", include("about.urls")),
path("contact/", include("contact.urls")),
path("homepage/", include("homepage.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