Files @ 4cbf566e3151
Branch filter:

Location: website/www/conservancy/__init__.py

brett
contractpatch: Page layout adjustments.

Try to make sections clearer and avoid the "big monolith of text"
feeling.
1
2
3
4
5
6
from django.shortcuts import render_to_response
from django.template import RequestContext

def render_template_with_context(request, template_path, context_dict):
    return render_to_response(template_path, context_dict,
                              context_instance=RequestContext(request))