{% extends "base.html" %} {% block extra_head %} {% endblock extra_head %} {% block content %}
Back to Home

{{ tournament.name }} - {{ events | length }} events

{% for e in events | sort(attribute='time') %} {% if loop.changed(e.time.date()) %}

{{ e.time | strftime(time=False) }}

{% endif %}
{{ e.phase|lower }}
{{ e.time | strftime(date=False) }}

{{ e.stats.fencers_checked_in | length }} of {{ e.fencers | length }} fencer(s) checked in.

{% if e.stats.previously_fenced %}

{{ e.stats.previous_total }} fenced in prior events:

{% endif %} {% if e.stats.new_fencers_not_checked_in %}

{{ e.stats.new_fencers_not_checked_in | length }} new and not checked in

{% endif %}
{% endfor %}
{% endblock content %}