annotate gpp/legal/views.py @ 2:f3ad863505bf

Got rid of the core.SiteConfig model and all usage.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 Apr 2009 17:57:22 +0000
parents dbd703f7d63a
children
rev   line source
gremmie@1 1 """views for the legal application"""
gremmie@1 2
gremmie@1 3 from django.shortcuts import render_to_response
gremmie@1 4 from django.shortcuts import get_object_or_404
gremmie@1 5 from django.template import RequestContext
gremmie@1 6
gremmie@1 7 from legal.models import Policy
gremmie@1 8
gremmie@1 9 def view(request, policy_name):
gremmie@1 10 policy = get_object_or_404(Policy, policy_type = policy_name)
gremmie@1 11 return render_to_response('legal/view.html',
gremmie@1 12 {'policy' : policy},
gremmie@1 13 context_instance = RequestContext(request))