| changeset 1 | 5a91860c5535 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/polemictweet/views/home.py Fri Feb 08 18:00:04 2013 +0100 @@ -0,0 +1,6 @@ +from django.conf import settings +from django.shortcuts import render_to_response, redirect +from django.template import RequestContext + +def root_home(request): + return render_to_response('home.html', context_instance=RequestContext(request))