- Author:
- romain-hardouin
- Posted:
- June 11, 2008
- Language:
- Python
- Version:
- .96
- Score:
- 9 (after 9 ratings)
This tiny template filter saves you the tedious test "if this variable is set, print this text based on this variable".
'verbose' filter takes one parameter : a string containing '%s' which is a placeholder for the value to test. Check those examples :
-
Replace this :
{% if name %} Hello {{ name }}, this is a dummy text {% endif %}
-
By this :
{{ name|verbose:"Hello %s this is a dummy text" }}
This is also usefull for HTML :
{{ image|verbose:"<img src=\"%s\" />" }}
1 2 3 4 5 6 7 8 9 10 11 12 13 | from django import template
register = template.Library()
@register.filter
def verbose(value, arg):
try:
if not value:
return ''
return arg % value
except Exception:
return str(value)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Good stuff, very handy. If used for HTML as in the last example, don't forget to tag on the |safe filter, too.
#
Please login first before commenting.