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

Match #{{ match.match_number }}

{{ match.fighter1_township }} vs {{ match.fighter2_township }}

← Back to Fixture View All Fixtures
Match Number
#{{ match.match_number }}
Fighter 1
{{ match.fighter1_township }}
Fighter 2
{{ match.fighter2_township }}
Venue
{{ match.venue_kampala_township }}
Status
{{ 'Active' if match.active_status else 'Inactive' }}
Created
{{ match.created_at.strftime('%Y-%m-%d %H:%M') if match.created_at else 'N/A' }}
Fixture ID
{{ match.fixture_id[:8] }}...

ZIP File Management

{% if match.zip_upload_status == 'completed' %}
ZIP File Uploaded {{ match.zip_filename or 'Unknown filename' }}
{% else %}
No ZIP File {% if match.zip_upload_status == 'failed' %} Upload failed {% elif match.zip_upload_status == 'pending' %} Upload pending {% endif %}
{% endif %}
0%

Match Outcomes

Updating outcomes...
{% if outcomes %}
{% for outcome in outcomes %}
{{ outcome.column_name }}
{% endfor %}
{% else %}
📊

No Outcomes Available

This match doesn't have any outcomes recorded yet. Add some outcomes below to get started.

{% endif %}

Add New Outcome

{% endif %}