How can I print all variables in a jinja2 html template? Is there a list or dict of them I can access and view? I need to be able to do this with out editing the python backend.
{% for var in LIST_OF_VARS %}
{{ var }}
{% endfor %}
This is not a duplicate of this question How to get a list of current variables from Jinja 2 template? because I need to accomplish this without editing the python backend and adding new code.