just return a blank page for the index
i'll keep the index.html around for when we eventually use it, though
This commit is contained in:
parent
c8a72cf8a5
commit
f9c7388bae
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user