{% extends 'base.html' %} {% block title %}Match predictions – Admin – {{ app_brand }}{% endblock %} {% block content %}
| 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] }} |