12 lines
281 B
Python
12 lines
281 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
|
|
|
|
def hompage(request):
|
|
#return HttpResponse("Hello World")
|
|
return render(request, 'home.html')
|
|
|
|
def about(request):
|
|
return render(request, 'about.html')
|
|
|
|
#return HttpResponse("My About page") |