diff --git a/templates/profile.html b/templates/profile.html index 9a72436..a28f0d0 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -21,9 +21,13 @@ {% endif %}
- - {{ user.team.member_count }} member{{ user.team.member_count|pluralize }} - + {% if user.team|user_is_member:request.user %} + + {{ user.team.member_count }} member{{ user.team.member_count|pluralize }} + + {% else %} + {{ user.team.member_count }} members + {% endif %}