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 5 years, 1 month ago
- Template Filter attr by marinho 4 years ago
- TaggedManager and TaggedQuerySet with chainable tagged() methods implemented with django-tagging by fish2000 2 years, 3 months ago
- Alphabetic filter for admin by semente 3 years, 8 months ago
- render_with decorator by tobias 3 years, 8 months ago
Comments