Boolean Image Flag TemplateTag

 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

  1. Template Tag of Django Image Thumb Creator by ayang23 1 year ago
  2. Cacheable resources by jbrisbin 3 years, 5 months ago
  3. email_links by sansmojo 4 years, 8 months ago
  4. Photologue wiki-syntax templatetag by yeago 3 years, 4 months ago
  5. Tags & filters for rendering search results by exogen 3 years, 10 months ago

Comments

(Forgotten your password?)