This is such a basic issue that I can only assume I'm looking at it completely the wrong way but...
I'm new enough to Django and I've taken the responsibility of redesigning a django application. The functionality is pretty good but the layout of things need to be styled and displayed a bit better.
My problem is this.
If in designing templates for for a PHP application and I want to see what attributes each of my objects have I can do a print_r (or a prettier inequivalent) and see exactly what data I can play with.
In django from the template level this doesn't appear to be possible which is baffling to me. Surely the idea of seperating design from business logic etc with MVC should also extend to have different people working on each level. If that is the case the a design person should have a way to display all variables available?