basic hello world url + view + template to illustrate basic django logic

This commit is contained in:
Sanj 2011-09-17 21:57:45 +05:30
parent 2f8d3ab0b1
commit 97d99f41af

View File

@ -1 +1,5 @@
# Create your views here.
from django.shortcuts import render_to_response
def index(request):
return render_to_response("index.html", {})