icxrus
icxrus

Reputation: 13

Display users without a group in a template Django

I am creating an app that allows me to edit users on the frontend. Before doing this I wish to have all the users listed in a page. They are categorized by their group. Users that are in a group show up how they are supposed to. I want to also display users that are not in a group.

This is how I fetch the users in a specific group: groupuser = User.objects.filter(groups__name='mygroup').

How do I display a user without any group in my template?

I am new to Django and don't know much about this.

Upvotes: 0

Views: 310

Answers (1)

drec4s
drec4s

Reputation: 8077

You can use the field lookup __isnull.

User.objects.filter(groups__isnull=True) gives you all the users that do not belong to any group.

Upvotes: 5

Related Questions