{% import "macros.html" as macros %} {% import "components.html" as components %} {% extends "communities/base.html" %} {% block content %}
{{ icon "users-round" }} {{ text "communities:tab.members" }}
{% for item in list %}
Since {{ item[0].created }} {% if can_manage_roles %} {{ icon "pencil" }} {{ text "general:action.manage" }} {% endif %}
{{ components::user_card(user=item[1]) }}
{% endfor %} {{ components::pagination(page=page, items=list|length) }}
{% endblock %}