1 2 3 4 5 6 7 8 | from django.template import Library
register = Library()
@register.filter_function
def order_by(queryset, args):
args = [x.strip() for x in args.split(',')]
return queryset.order_by(*args)
|
More like this
- Allow filtering and ordering by counts of related query results by exogen 4 years, 10 months ago
- Template Filter attr by marinho 3 years, 9 months ago
- TaggedManager and TaggedQuerySet with chainable tagged() methods implemented with django-tagging by fish2000 1 year, 11 months ago
- Alphabetic filter for admin by semente 3 years, 4 months ago
- render_with decorator by tobias 3 years, 5 months ago
Comments