Really (I mean *really*) simple index view

This commit is contained in:
Eryn Wells 2012-08-17 20:26:22 -07:00
parent 959197b8c7
commit 97a2191b1a
2 changed files with 8 additions and 0 deletions

5
views.py Normal file
View file

@ -0,0 +1,5 @@
from django.shortcuts import render_to_response
def index(request):
return render_to_response('login.html')