Welcome, {{club['email']}}
Logout
{% with messages = get_flashed_messages()%}
{% if messages %}
{% for message in messages %}
- {{message}}
{% endfor %}
{% endif%}
Points available: {{club['points']}}
Competitions:
{% for comp in competitions%}
-
{{comp['name']}}
Date: {{comp['date']}}
Number of Places: {{comp['numberOfPlaces']}}
{%if comp['numberOfPlaces']|int >0 and comp['date'] > now%}
Book Places
{%endif%}
{% endfor %}
{%endwith%}