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