{% extends "layouts/base.html" %} {% block title %}{{ exchange.name }}{% endblock %} {% block content %}

{{ exchange.name }}

Details

State
{{ exchange.state }}
Description
{{ exchange.description or "No description" }}
Budget
{{ exchange.budget }}
Max Participants
{{ exchange.max_participants }}
Registration Close Date
{{ exchange.registration_close_date.strftime('%Y-%m-%d %H:%M') }} {{ exchange.timezone }}
Exchange Date
{{ exchange.exchange_date.strftime('%Y-%m-%d %H:%M') }} {{ exchange.timezone }}
Registration Link
{{ url_for('participant.register', slug=exchange.slug, _external=True) }}

Participants ({{ exchange.participants|selectattr('withdrawn_at', 'none')|list|length }} / {{ exchange.max_participants }})

{% set active_participants = exchange.participants|selectattr('withdrawn_at', 'none')|list %} {% if active_participants %} {% for participant in active_participants|sort(attribute='name') %} {% endfor %}
Name Email Registered
{{ participant.name }} {{ participant.email }} {{ participant.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}

No participants yet.

{% endif %}
{% if exchange.state == 'draft' %}
{% endif %} Back to Dashboard
{% endblock %}