1 2 3 4 5 6 7 8 9 10 11 12 | # Put this in your custom templatetags file
@register.inclusion_tag('app/boolean_flag_img.html')
def boolean_img(flag):
return {'flag': flag}
# Use as your 'boolean_flag_img.html' file
{% if flag %}
<img src="/media/icons/accept.png" alt="True" />
{% else %}
<img src="/media/icons/deny.png" alt="False" />
{% endif %}
|
More like this
- Template Tag of Django Image Thumb Creator by ayang23 1 year ago
- Cacheable resources by jbrisbin 3 years, 5 months ago
- email_links by sansmojo 4 years, 8 months ago
- Photologue wiki-syntax templatetag by yeago 3 years, 4 months ago
- Tags & filters for rendering search results by exogen 3 years, 10 months ago
Comments