2
votes
Any drawbacks or gotchas to using Jinja2 templates in Django?
I haven't used Jinja2 with an actual Django site yet, but I did convert an application using Django templates in standalone mode over to Jinja2 templates. The only (very minor) problem I encounter …
5
votes
How do I add multiple arguments to my custom template filter in a django template?
It is possible and fairly simple.
Django only allows one argument to your filter, but there's no reason you can't put all your arguments into a single string using a comma to separate them. …
0
votes
How to repeat a “block” in a django template
There are two easy solutions for this.
The easiest is to put your title into a context variable. You would set the context variable in your view.
If you are using something like ge …
2
votes
Visual Editor for Django Templates?
I haven't tried it personally, but a co-worker uses the free ActiveState Komodo Edit to edit Django templates, and th …
2
votes
Django model inheritance w/ custom inclusion_tags
Take advantage of Django's contenttypes framework to identify your model types.
See this snippet: …
4
votes
How can I put a block of dynamically generated content into a django template?
There are a number of ways to handle this, so you can choose a method that best matches your own personal style or requirements:
Template context variable: as answ …
0
votes
Defining “global variable” in Django templates
Well, this is kind of abusive of template inheritance, but you could use {{block.super}} to put …
0
votes
django template change behaviour to silent_variable_failure = False
The Django template system looks for silent_variable_failure as an attribute of any exception.
This means you have do define your own exception with that attribute set to …
