move in preparation for virtualenv setup

This commit is contained in:
j 2009-10-09 16:02:20 +02:00
commit 973b3600af
33 changed files with 0 additions and 0 deletions

11
oxdb/app/views.py Normal file
View file

@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
from django.shortcuts import render_to_response, get_object_or_404, get_list_or_404
from django.template import RequestContext
from django.conf import settings
def index(request):
context = RequestContext(request, {})
return render_to_response('index.html', context)