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 %}
Match Outcomes
Updating outcomes...
{% if outcomes %}
{% for outcome in outcomes %}
{% endfor %}
{{ outcome.column_name }}
No Outcomes Available
This match doesn't have any outcomes recorded yet. Add some outcomes below to get started.