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, 5 months ago
- If in list template tag by udfalkso 4 years, 7 months ago
- order_by template filter by marinho 3 years, 9 months ago
- table with n items per row using custom modulo tag by elgreengeeto 3 years, 2 months ago
- Template tag to create a list from one or more variables and/or literals by davidchambers 1 year, 4 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.
#