16 lines
273 B
Python
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
|