dr.botzo/dr_botzo/views.py
Brian S. Stephan f9c7388bae just return a blank page for the index
i'll keep the index.html around for when we eventually use it, though
2014-04-05 10:49:23 -05:00

16 lines
273 B
Python

"""
dr_botzo/views.py --- various random views
"""
from django.http import HttpResponse
from django.shortcuts import render
def home(request):
"""Site index, nothing special (or at all, right now)."""
return HttpResponse()
# vi:tabstop=4:expandtab:autoindent