{% extends "backoffice/base.html" %} {% load i18n %} {% load static %} {% load rules %} {% block content %} {% has_perm 'core.change_assembly' request.user assembly as can_change %} {% include "backoffice/assembly_edit_header.html" %} {% if form.errors %}
{{ form.errors }}
{% endif %}
{% trans "Assembly__edit_children__invite_assembly__title" %}

{% trans "Assembly__edit_children__invite_assembly__introduction" %}

{% csrf_token %}
{% include "backoffice/assemblies/components/child_assemblies.html" %} {% if received_invitations %} {% if assembly.received_invitations and can_change %} {% trans "Invitation__list_pending__title" as list_title %} {% include "backoffice/components/invitations_list.html" with invitations=received_invitations border_class="border-primary" list_title=list_title requested_view=True %} {% endif %} {% endif %} {% if sent_invitations %} {% if assembly.sent_invitations and can_change %} {% trans "Invitation__list_sent__title" as list_title %} {% include "backoffice/components/invitations_list.html" with invitations=sent_invitations border_class="border-secondary" list_title=list_title requester_view=True %} {% endif %} {% endif %} {% endblock content %}