forked from expo/troggle
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)
|