which you would use like this:
The item is
{% if item|in_list:list %}
in list
{% else %}
not in list
{% endif %}
1 2 3 4 5 | # by mikeivanov (on April 16, 2007)
@register.filter
def in_list(value,arg):
return value in arg
|
More like this
- Mask sensitive data from logger by agusmakmun 1 month, 1 week ago
- Template tag - list punctuation for a list of items by shapiromatron 1 year, 3 months ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 3 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 10 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 11 months ago
Comments
Thanks, guychi :-)
#
dammit, i wrote a tag for this whole thing, it's 20 times longer. never thought about such a clean and simple solution. i guess i'll use this one.
#
i love this kinda snippet: tiny n' nifty :-)
#
small,nice,clean and useful :)
#
Thanks. This really makes it easier.
#
Please login first before commenting.