MOZZIE
//
FLAG FOOTBALL
SEASON
{{ wins }}W
·
{{ losses }}L
·
{{ ties }}T
← COCKPIT
// NEW GAME
HOME
AWAY
UPCOMING
LIVE
// PAST GAME (already final, enter score directly)
+ ADD 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' %}
● GO LIVE
{% endif %} {% if game.status == 'live' %}
MOZZIE
{% for play in plays %}
{{ play.label }}
+{{ play.pts }}
{% endfor %}
{{ game.opponent | upper }}
{% for play in plays %}
{{ play.label }}
+{{ play.pts }}
{% endfor %}
↩ UNDO LAST
{% 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 %}
📝 PUBLISH RECAP
{% endif %}
{% if game.photos %}
{% for url in game.photos %}
{% 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 %}
× remove game
{% endfor %}
{% endif %}
RECAP DRAFT
// EDIT BEFORE SENDING TO STATUS FEED
↺ RESET TO AUTO-DRAFT
📎 ATTACH PHOTO (OPTIONAL)
PUBLISH RECAP
SAVE DRAFT
CANCEL