Documentation on 'Render' shortcut
According to the link above, the context_instance parameter is defined as
The context instance to render the template with. By default, the template will be rendered with a RequestContext instance (filled with values from request and dictionary).
With this definition in mind, I don't see any scenarios that would benefit from supplying the context_instance argument. I mean if I need to provide additional context values I would just add them to the dictionary parameter. I don't know how context_instance can be useful. Please educate me. Thanks.