view hgscm/apps/www/views.py @ 65:57ece5687f92

Add 'about this page' site
author David Soria Parra <dsp@php.net>
date Wed, 18 Feb 2009 05:58:08 +0100
parents 7276388fc71b
children bef09338eceb
line wrap: on
line source

from django.shortcuts import render_to_response
from django.template import RequestContext

def frontpage(request):
    return render_to_response("frontpage.html", { },
        RequestContext(request))
def about(request):
    return render_to_response("about.html", { },
        RequestContext(request))
def thepage(request):
    return render_to_response("thepage.html", { },
        RequestContext(request))