> Registration
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% if spots_left > 0 %}
Spots Remaining: {{ spots_left }} / {{max_spots}}
{% else %}
Register for Waitlist
This event is currently full. Join the queue to be notified of openings.
{%endif %}
{% endblock %}