Skip to main content

Posts

Showing posts from September, 2013

Debugging Django Template Tags

Here's a cool bit of code snippet that I found from the web (original post here ). I'm recording it here for my own easy reference without having to google it all the time. It describes a simple technique to debug Django templates using the python debugger - pdb. @register.filter def pdb(element): import pdb; pdb.set_trace() return element Now, inside a template you can do {{ template_var|pdb }} and enter a pdb session (given you're running the local development server) where you can inspect element to your heart's content. It's a very nice way to see what's happened to your object when it arrives at the template.

MQC Client

Beging a legacy component, Mercury Quality Center web plugin does not work very well with new versions of Internet Explorer. MQC Client is a little program that addresses this by hosting the MQC web plugin inside it making it work with the newer IE versions that come as standard with Windows 7. I have not tested it on Windows 8, but it ought to work. More about the program and how to use it is here .