[Answered ]-Django template context processors vs passing parameters to render_to_response

2👍

When you have to use in a lot of templates (almost in every template), something like the user, or DEBUG or other parameters that these don’t have a lot of cost, you must use a context processors. In other case passing to render_to_response

👤Goin

Leave a comment