How to Write Django Template Tags
Posted on January 22nd, 2009 by Greg Allard in Django, Programming | Comments
Template tags can be useful for making your applications more reusable by other projects. For this example I will be adding to the
books project that I started in a previous post. Also, I’ve bundled the
example files into a google code project.
Start off by creating a folder called templatetags in your app directory and [...]