mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2025-02-18 13:10:20 +00:00
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)
|