view gpp/views.py @ 140:91a01b8b5885

Comments: in order to show a green board concept while looking at the comments in the admin, added a 'not removed' boolean function.
author Brian Neal <bgneal@gmail.com>
date Mon, 30 Nov 2009 03:20:24 +0000
parents aa2b41c5212b
children
line wrap: on
line source
"""
This file contains views that don't belong to any specific application.
In particular, the home page view.
"""
from django.shortcuts import render_to_response
from django.template import RequestContext


def home(request):
    """
    The home page view of the site.
    """
    return render_to_response('home.html', {
        }, 
        context_instance = RequestContext(request))