Fixtures
{% if fixtures %}| Fixture ID | Filename | Upload Date | Matches | Status | Actions |
|---|---|---|---|---|---|
| {{ fixture.fixture_id[:8] }}... | {{ fixture.filename }} | {{ fixture.upload_date.strftime('%Y-%m-%d %H:%M') if fixture.upload_date else 'N/A' }} | {{ fixture.match_count }} matches | {% if fixture.active_matches == fixture.match_count %} All Active ({{ fixture.active_matches }}/{{ fixture.match_count }}) {% elif fixture.active_matches > 0 %} Partial ({{ fixture.active_matches }}/{{ fixture.match_count }}) {% else %} Inactive (0/{{ fixture.match_count }}) {% endif %} | View |
{% if pagination.has_prev %}
« Previous
{% endif %}
{% for page_num in range(1, pagination.pages + 1) %}
{% if page_num == pagination.page %}
{{ page_num }}
{% else %}
{{ page_num }}
{% endif %}
{% endfor %}
{% if pagination.has_next %}
Next »
{% endif %}
{% endif %}
{% else %}
{% endif %}