[Answer]-Issues with passing a bunch of default values in a dictionary into the template

1👍

Try render_to_response(template_name, kwargs). Render to response takes an actual dictionary as its argument, so you can reuse the dictionary kwargs. **kwargs unpacks the dictionary unto keyword style arguments, so it is no longer a dictionary.

Leave a comment