Commit 699d17d2 authored by Ysabella Panghulan's avatar Ysabella Panghulan

edited views.py and created urls.py for contact app

parent 5b3c14f5
......@@ -17,6 +17,7 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('contact/', include('contact.urls')),
path('about/', include('about.urls')),
path('homepage/', include('homepage.urls')),
path('admin/', admin.site.urls),
......
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='contact'),
]
\ No newline at end of file
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse('Facebook: facebook.com/ysabella.panghulan')
\ No newline at end of file
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