{% load i18n %}
{% translate "Requests" %}
    {% for participation in requested_participations %}
  • {{ participation.participant }} {% endfor %}
{% translate "Signed up" %}
    {% for section, names in confirmed_sections_with_users %}
  • {{ section.title }} {{ names|length }}/{{ section.min_count }}
      {% for name in names %}
    • {{ name }}
    • {% endfor %}
  • {% endfor %}
{% if disposition_url %}
{% translate "Disposition" %}
{% endif %}