mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
25b695e53d
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8245 by aaron @ 2/17/2009 1:09 AM
8 lines
311 B
Python
8 lines
311 B
Python
# this is the snippet from http://www.djangosnippets.org/snippets/3/
|
|
|
|
from django.shortcuts import render_to_response
|
|
from django.template import RequestContext
|
|
|
|
def render_response(req, *args, **kwargs):
|
|
kwargs['context_instance'] = RequestContext(req)
|
|
return render_to_response(*args, **kwargs) |