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

{{ exchange.name }}

Welcome, {{ participant.name }}!

Exchange Details

Budget
{{ exchange.budget }}
Gift Exchange Date
{{ exchange.exchange_date.strftime('%Y-%m-%d') }}
Registration Deadline
{{ exchange.registration_close_date.strftime('%Y-%m-%d') }}

Your Information

Name
{{ participant.name }}
Email
{{ participant.email }}
{% if participant.gift_ideas %}
Gift Ideas
{{ participant.gift_ideas }}
{% endif %}
{% if can_edit_profile %} Edit Profile {% endif %}

Participants ({{ participant_count }})

{% if participants %} {% else %}

No other participants yet. Share the registration link!

{% endif %}

Email Reminders

{{ reminder_form.hidden_tag() }}
{{ reminder_form.reminder_enabled() }} {{ reminder_form.reminder_enabled.label }}
{% if reminder_form.reminder_enabled.description %} {{ reminder_form.reminder_enabled.description }} {% endif %}
{% if can_withdraw %}

Withdraw from Exchange

If you can no longer participate, you can withdraw from this exchange. This cannot be undone.

Withdraw from Exchange
{% endif %}
{% endblock %}