Login

Template filter to get each attribute value in an iterable

Author:
strangefeatures
Posted:
March 4, 2012
Language:
Python
Version:
1.1
Score:
0 (after 0 ratings)

Iterate through the supplied iterable and return the attrname eattribute of each element in the iterable. Useful with the join filter

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

  1. Form field with fixed value by roam 1 week, 3 days ago
  2. New Snippet! by Antoliny0919 2 weeks, 2 days ago
  3. Add Toggle Switch Widget to Django Forms by OgliariNatan 3 months ago
  4. get_object_or_none by azwdevops 6 months, 4 weeks ago
  5. Mask sensitive data from logger by agusmakmun 8 months, 3 weeks ago

Comments

Please login first before commenting.