So I want to change what information is displayed based on the group the user is in.
So:
{% if user.is_staff %}
......
That works but when I try and do
{% if user.is_China %}
This group doesn't work?
Is there a specific thing I need to do to find out if the user is part of a group?