{% load i18n %}
{% trans "Requests" %}
    {% for participant in requested_participants %}
  • {{ participant }}
  • {% endfor %}
{% trans "Signed up" %}
    {% for participant in confirmed_participants %}
  • {{ participant }}
  • {% endfor %}
{% if disposition_url %}
{% trans "Disposition" %}
{% endif %}