SEASON   {{ wins }}W · {{ losses }}L · {{ ties }}T
← COCKPIT
// NEW GAME
{% if active %}
// ACTIVE
{% for game in active %}
vs. {{ game.opponent }}
{{ game.date }} · {{ 'HOME' if game.location == 'home' else 'AWAY' }}
{% if game.status == 'live' %} ● LIVE {% else %} UPCOMING {% endif %}
MOZZIE
{{ game.mozzieScore }}
{{ game.opponent | upper }}
{{ game.oppScore }}
{% if game.status != 'live' %}
{% endif %} {% if game.status == 'live' %}
MOZZIE
{% for play in plays %} {% endfor %}
{{ game.opponent | upper }}
{% for play in plays %} {% endfor %}
{% endif %} {% if game.plays %}
SCORING LOG
{% set recent = game.plays[-5:] | reverse | list %} {% for p in recent %}
{{ 'MOZZIE' if p.team == 'mozzie' else game.opponent | upper }} {{ p.playId }} +{{ p.pts }}
{% endfor %}
{% endif %}
{% endfor %} {% endif %}
{% if finished %}
// SEASON LOG
{% for game in finished %} {% set mozzie = game.mozzieScore %} {% set opp = game.oppScore %} {% if mozzie > opp %}{% set result = 'w' %} {% elif mozzie < opp %}{% set result = 'l' %} {% else %}{% set result = 't' %}{% endif %}
vs. {{ game.opponent }}
{{ game.date }} · {{ 'HOME' if game.location == 'home' else 'AWAY' }} {% if game.recap_published %} · ✅ recap published {% elif game.recap_drafted %} · 📝 recap drafted {% endif %}
{{ mozzie }}–{{ opp }} {{ result | upper }}·FINAL
{% if game.recap_drafted and not game.recap_published %}
{% endif %}
{% if game.photos %}
{% for url in game.photos %} Game photo {% endfor %}
{% endif %}
MOZZIE
{{ mozzie }}
{{ game.opponent | upper }}
{{ opp }}
{% if game.plays %}
SCORING LOG
{% for p in game.plays %}
{{ 'MOZZIE' if p.team == 'mozzie' else game.opponent | upper }} {{ p.playId }} +{{ p.pts }}
{% endfor %}
{% endif %} {% if game.notes %} {% endif %}
{% endfor %}
{% endif %}