change default back to blog redirect

This commit is contained in:
Sanj 2011-10-22 23:57:34 +01:00
parent a3ba393c2d
commit dc5831bd59

View File

@ -3,7 +3,7 @@ from django.http import HttpResponseRedirect
from django.shortcuts import render_to_response from django.shortcuts import render_to_response
def index(request): def index(request):
return render_to_response("test/index.html", {}) return HttpResponseRedirect("http://blog.mofca.in")
def test(request): def test(request):
return render_to_response("test/index.html", {}) return render_to_response("test/index.html", {})