From the documentation:
render
Combines a given template with a given context dictionary and returns an HttpResponse object with that rendered text.
render() is the same as a call to render_to_response() with a context_instance argument that forces the use of a RequestContext.
render_to_response
Renders a given template with a given context dictionary and returns an HttpResponse object with that rendered text.
Can you provide a task-oriented example and a description of when one would choose to use render_to_response
in a view versus render
?