SyntaxFix
Write A Post
Hire A Developer
Questions
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.
lt
gt