Mercurial > hg-website
view hgscm/apps/www/views.py @ 26:b3d9cbb33d54
adding basic django project, just renders the frontpage right now
author | Jesper Noehr <jesper@noehr.org> |
---|---|
date | Sun, 15 Feb 2009 19:58:03 +0100 |
parents | |
children | 7276388fc71b |
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))