{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Fixture Details

← Back to Fixtures
Fixture ID
{{ fixture_info.fixture_id[:8] }}...
Filename
{{ fixture_info.filename }}
Upload Date
{{ fixture_info.upload_date.strftime('%Y-%m-%d %H:%M') if fixture_info.upload_date else 'N/A' }}
Total Matches
{{ fixture_info.total_matches }}
Active Matches
{{ fixture_info.active_matches }}
Status
{% if fixture_info.active_matches == fixture_info.total_matches %} All Active {% elif fixture_info.active_matches > 0 %} Partial {% else %} Inactive {% endif %}

Matches in this Fixture

{% if matches %} {% for match in matches %} {% endfor %}
Match # Fighter 1 Fighter 2 Venue Status ZIP Status Actions
{{ match.match_number }} {{ match.fighter1_township }} {{ match.fighter2_township }} {{ match.venue_kampala_township }} {% if match.active_status %} Active {% else %} Inactive {% endif %} {% if match.zip_upload_status == 'completed' %} Completed {% elif match.zip_upload_status == 'pending' %} Pending {% elif match.zip_upload_status == 'failed' %} Failed {% else %} {{ match.zip_upload_status.title() }} {% endif %}
View Details {% if match.zip_upload_status == 'completed' %}
{% else %}
{% endif %}
0%
{% else %}

No matches found in this fixture.

{% endif %}
{% if uploads %}

Associated File Uploads

{% for upload in uploads %} {% endfor %}
Filename File Type Size Status Upload Date
{{ upload.original_filename }} {{ upload.file_type.upper() }} {{ "%.1f"|format(upload.file_size / 1024 / 1024) }} MB {% if upload.upload_status == 'completed' %} Completed {% elif upload.upload_status == 'failed' %} Failed {% else %} {{ upload.upload_status.title() }} {% endif %} {{ upload.created_at.strftime('%Y-%m-%d %H:%M') if upload.created_at else 'N/A' }}
{% endif %}