8 lines
212 B
Python
8 lines
212 B
Python
# Create your views here.
|
|
from django.shortcuts import render_to_response
|
|
|
|
def home(request):
|
|
return render_to_response("main/home.html")
|
|
|
|
def contact(request):
|
|
return render_to_response("main/contact.html")
|