from django.template import Library register = Library() @register.filter def sortby (sequence, attribute): # variation on dictsort using attribute access lst = list(sequence) lst.sort(key=lambda obj: getattr(obj,attribute)) return lst