edgware/edgware/main/views.py
2011-02-11 04:34:26 +05:30

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")