{% extends "community/_base.html" %} {% from "macros/box.html" import m_box_content, m_box_menu %} {% import "community/members_macros.html" as macros with context %} {%- from "community/macros.html" import wizard_steps -%} {% from "macros/user.html" import m_user_link, m_user_photo %} {% block memberscontent %} {% call m_box_content(_("Members Wizard")) %} {{ wizard_steps(steps,2) }}

{{ _("Existing and new members") }}

{{ _("Check if the user is already a member of the community and if he currently has an account on the platform") }}


{% if existing_members_objects %}
{{ _("The users below are already members of the community :") }}

{% for member in existing_members_objects %}

{% call m_user_link(member, css="media-object") %} {{ m_user_photo(member, size="32") }}{{ member }} ({{ member.email }}) {%- endcall %}

{% endfor %}
{% endif %}
{% set table_id = uuid() %}
{{ csrf.field() }}
{% endcall %} {% endblock %}