Commit b8f0639a authored by Joei Yucoco's avatar Joei Yucoco

made Homepage's views visible

configured site-wide urls and settings by adding paths
parent 6b51bf36
No preview for this file type
......@@ -3,6 +3,6 @@ from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse('Welcome to Joei’s Music Library!')
return HttpResponse('Welcome to Joei’s Music Library!')
# Create your views here.
......@@ -41,6 +41,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'Homepage'
]
MIDDLEWARE = [
......
......@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('Homepage.urls', namespace="Homepage")),
]
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