mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-23 07:41:56 +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) |