From f9c7388bae6d4820f9b4ba2a1d7e195f79dab51a Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 5 Apr 2014 10:49:23 -0500 Subject: [PATCH] just return a blank page for the index i'll keep the index.html around for when we eventually use it, though --- dr_botzo/views.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/dr_botzo/views.py b/dr_botzo/views.py index b69d91a..af16b5d 100644 --- a/dr_botzo/views.py +++ b/dr_botzo/views.py @@ -1,8 +1,15 @@ +""" +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).""" - return render(request, 'index.html', {}) +def home(request): + """Site index, nothing special (or at all, right now).""" + + return HttpResponse() # vi:tabstop=4:expandtab:autoindent