I\'m new to Django and I wonder if there is a way to dump all the variables available to a template for debugging purposes. In Python I might use something like locals()<
While the two solutions provided by the other members may get you access to all the variables in a template I thought there had to be an easier way (thanks for your responses, BTW).
Here is a simple way to find all the variables passed to the template.
The debugging output for the template contains a section called "TraceBack". Find the traceback for your view (second entry from the top in my case) and click on "Local vars". And it's all there.