1 2 3 4 5 6 7 8 9 | from django import template
register = template.Library()
@register.filter
def attr_for_each(iterable, attrname):
"""Iterate through the supplied iterable and return the `attrname` eattribute
of each element in the iterable. Useful with the `join` filter."""
return [getattr(elem, attrname) for elem in iterable]
|
More like this
- Field List Tag by hughsaunders 2 years ago
- Getting the global error of a form by baptiste 6 years ago
- outliner template tag by showell 4 years ago
- Template filter to get a list element by its index by abidibo 1 year ago
- nofollow filter by svetlyak 5 years, 10 months ago
Comments