Upload Fixture File

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

📋 File Requirements

Please ensure your fixture file meets the following requirements:

  • File Format: CSV, XLSX, or XLS
  • Required Columns:
    • Match Number (match #, match_number, match no, etc.)
    • Fighter 1 (fighter1, fighter 1, etc.)
    • Fighter 2 (fighter2, fighter 2, etc.)
    • Venue (venue, location, kampala township, etc.)
  • Optional: Outcome columns with numeric data
  • Encoding: UTF-8 recommended for CSV files
{{ form.hidden_tag() }}
{{ form.fixture_file.label }} {{ form.fixture_file() }}
Supported formats: .csv, .xlsx, .xls (Max size: 10MB)
{% if form.description %}
{{ form.description.label }} {{ form.description(class="form-control", rows="3", placeholder="Optional description for this fixture upload...") }}
{% endif %}
{{ form.submit(class="btn") }} Cancel