Been banging my head on Django boilerplate for a while now. Django has (at least) three very similar functions for template rendering, each with a varying degree of shortcutedness:
django.shortcuts.render_to_response
django.template.loader.render_to_string
django.views.generic.simple.direct_to_template
It seems that at least two of these (probably render_to_response and direct_to_template) could be refactored into a single, less boilerplatish, shortcut.
django.views.generic.simple.direct_to_template is almost good enough on its own, but unfortunately puts keyword arguments in a params dict, making it incompatible with most uses of render_to_response (template refactoring is often necessary when switching from render_to_response to direct_to_template). render_to_response, which ironically lives in django.shortcuts, is hardly a well-thought-out shortcut. It should convert keyword arguments to template parameters and that ungainly context_instance argument is just too long to type ... often.
I've attempted a more useful shortcut. Note the use of *request_and_template_and_params to prevent clashes between template parameter names and positional argument names.
def render(*request_and_template_and_params, **kwargs):
"""Shortcut for rendering a template with RequestContext
Takes two or three positional arguments: request, template_name, and
optionally a mapping of template parameters. All keyword arguments,
with the excepiton of 'mimetype' are added to the request context.
Returns a HttpResponse object.
"""
if len(request_and_template_and_params) == 2:
request, template_name = request_and_template_and_params
params = kwargs
else:
request, template_name, params = request_and_template_and_params
params = dict(params) # copy because we mutate it
params.update(kwargs)
httpresponse_kwargs = {'mimetype': params.pop('mimetype', None)}
context = RequestContext(request, params)
return HttpResponse(loader.render_to_string(
template_name, context_instance=context), **httpresponse_kwargs)