{% extends "backoffice/base.html" %} {% load i18n %} {% load widget_tweaks %} {% block title %} {% trans "Assembly__members" %} | {{ assembly.name }} | {{ conference.name }} {% endblock title %} {% block content %} {% include "backoffice/assembly_edit_header.html" %}
{% trans "Assembly__members" %}

{% trans "Assembly__members__introduction" %}

{% csrf_token %} {% if staff_mode %}{% endif %} {% if can_manage %} {% endif %} {% for member in object_list %} {% if staff_mode %} {% endif %} {% if can_manage %} {% endif %} {% endfor %}
NameMail R M T S {% trans "AssemblyMember__actions" %}
{{ member.member }} {% for communication_channel in member.member.communication_channels.all %} {% if communication_channel.channel == 'mail' and communication_channel.is_verified %} {{ communication_channel.address }} {% endif %} {% endfor %} {% if member.is_representative %} R {% else %} - {% endif %} {% if member.can_manage_assembly %} M {% else %} - {% endif %} {% if member.is_technical_contact %} T {% else %} - {% endif %} {% if member.show_public %} S {% else %} - {% endif %} {% trans "Assembly__members__edit" %}
{% if can_manage %} {% endif %}
{% endblock content %}