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
- Basic logic filters by mikeivanov 4 years, 8 months ago
- Template filter to get a list element by its index by abidibo 1 week, 6 days ago
- If in list template tag by udfalkso 4 years, 10 months ago
- order_by template filter by marinho 4 years ago
- table with n items per row using custom modulo tag by elgreengeeto 3 years, 5 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.
#