{% load i18n %}
{% translate "Requests" %}
    {% for participation in requested_participations %}
  • {{ participation.participant }} {% endfor %}
{% translate "Signed up" %}
    {% for section, users in sections_with_users %}
  • {{ section.title }} {{ users|length }}/{{ section.min_count }}
      {% for user in users %}
    • {{ user.0 }} ({{ user.1 }})
    • {% endfor %}
  • {% endfor %}
{% if disposition_url %}
{% translate "Disposition" %}
{% endif %}