{% extends 'base.html' %} {% block title %}Match predictions – Admin – {{ app_brand }}{% endblock %} {% block content %}
← Back to Admin
{{ match.team1_abbr }} vs {{ match.team2_abbr }}
{{ match.team1 }} vs {{ match.team2 }}
Match #{{ match.match_number or '?' }} · {{ match.match_date }} · {{ match.match_time }} {% if match.venue %} · {{ match.venue }}{% endif %}
{{ match.status }} {% if match.winner %}
🏆 {{ match.winner }}
{% if match.man_of_match %}
⭐ {{ match.man_of_match }}
{% endif %} {% endif %}
{% set total = predictions|length %} {% set team1_picks = predictions|selectattr('predicted_winner','equalto',match.team1)|list|length %} {% set team2_picks = predictions|selectattr('predicted_winner','equalto',match.team2)|list|length %} {% set total_bid = predictions|sum(attribute='bid_amount') %}
{{ total }}
Total Predictions
{{ team1_picks }}
{{ match.team1_abbr }} Picks
{{ team2_picks }}
{{ match.team2_abbr }} Picks
{{ '%.0f'|format(total_bid) }}
Total Points at Stake
{% if predictions %}
{% for p in predictions %} {% endfor %}
Player Winner Pick MOTM Pick Bid Winner? MOTM? P/L Submitted
{{ p.display_name or p.username }}
@{{ p.username }}
{{ p.predicted_winner }} {{ p.predicted_motm or '—' }} {{ '%.0f'|format(p.bid_amount) }} {% if p.is_settled %} {{ '✅' if p.winner_correct else '❌' }} {% else %}{% endif %} {% if p.is_settled and p.motm_correct is not none %} {{ '✅' if p.motm_correct else '❌' }} {% else %}{% endif %} {% if p.is_settled %} {{ p.points_earned|delta_sign }} {% else %}Pending{% endif %} {{ p.updated_at[:16] }}
{% else %}
🎯
No predictions for this match yet.
{% endif %}
{% endblock %}