How to do a less than or equal to filter in Django queryset? How to do a less than or equal to filter in Django queryset? python python

How to do a less than or equal to filter in Django queryset?


Less than or equal:

User.objects.filter(userprofile__level__lte=0)

Greater than or equal:

User.objects.filter(userprofile__level__gte=0)

Likewise, lt for less than and gt for greater than. You can find them all in the documentation.