""" 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