{% extends "backoffice/base.html" %} {% load i18n %} {% load django_bootstrap5 %} {% load rules %} {% load verbose_name %} {% block title %} {{ title_text }} | {{ invitation.conference.name }} {% endblock title %} {% block content %} {% include "backoffice/assembly_edit_header.html" %} {% has_perm "core.accept_invitation" request.user invitation as can_accept %} {% has_perm "core.change_invitation" request.user invitation as can_modify %}
{% csrf_token %}
{{ title_text }} {% if invitation.state == "requested" %} requested {% elif invitation.state == "accepted" %} accepted {% elif invitation.state == "rejected" %} rejected {% elif invitation.state == "withdrawn" %} withdrawn {% endif %}
{% if invitation.state == "requested" %}
{{ introduction_text }}
{% endif %}
{% if requester_link %} {{ invitation.requester.name }} {% else %} {{ invitation.requester.name }} {% endif %}
{% if requested_link %} {{ invitation.requested.name }} {% else %} {{ invitation.requested.name }} {% endif %}
{% if invitation.decision_by %}
{% endif %}
{% if form.comment %}
{% bootstrap_field form.comment %}
{% else %}
{% endif %}
{% if invitation.state == "requested" %} {% endif %}
{% endblock content %}