{% extends "cosinnus/base.html" %} {% load i18n cosinnus_tags static %} {% block page_title %}{% trans "Users" %}{% endblock %} {% block leftnav %} {% include "cosinnus/group/leftnav_all_groups.html" with current_page="portaladminlist" %} {% endblock leftnav %} {% block breadcrumb %}
  • {% trans "User overview" %}
  • {% trans "Portal Administrators" %}
  • {% endblock %} {% block content %}
    {% for user in object_list %}
    • {% include "cosinnus/user/user_avatar_image.html" with user=user %} {% comment %} fadedown disabled {% endcomment %} {% if not member == user and not SETTINGS.COSINNUS_IS_INTEGRATED_PORTAL %} {% endif %}
      {% comment %} {% if user.is_authenticated %} {% if user.pk in admins %} {% trans "Group Admin" %} {% elif user.pk in members %} {% trans "Group Member" %} {% elif user.pk in pendings %} {% trans "Membership requested" %} {% elif group.public %} {% trans "Public group" %} {% else %} {% trans "Not a member" %} {% endif %} {% endif %} {% endcomment %} {{ user|full_name }}
    {% empty %} {% include 'cosinnus/common/empty_button.html' with message="There are no visible users." %} {% endfor %} {% if hidden_user_count > 0 %}
    {% endif %}
    {% endblock %}