{% extends 'base.html' %} {% block title %}Admin – {{ app_brand }}{% endblock %} {% block head %} {% endblock %} {% block content %}
{% for tab in [('matches','πŸ“… Matches'),('add_match','βž• Add Match'),('results','βœ… Set Results'),('users','πŸ‘₯ Users')] %} {% endfor %}
πŸƒ Open team Pool (everyone’s picks)
{% for match in matches %} {% endfor %}
#TeamsDate & TimeVenue StatusWinnerPredsActions
{{ match.match_number or 'β€”' }}
{{ match.team1_abbr }} vs {{ match.team2_abbr }}
{{ match.team1 }} vs {{ match.team2 }}
{{ match.match_date|format_date }}
{{ match.match_time }}
{{ match.venue or 'β€”' }} {{ match.status }} {% if match.winner and match.winner != 'ABANDONED' %}
{{ match.winner }}
{% if match.man_of_match %}
⭐ {{ match.man_of_match }}
{% endif %} {% elif match.status == 'abandoned' %}Abandoned {% else %}β€”{% endif %}
View
{% endblock %}