{% extends "base.html" %} {% block title %}Dashboard – Skins & Pins{% endblock %} {% block content %}
{% if games_played > 0 %} {# Stats row #}
{{ games_played }}
Games played
{{ victories }}
Victories
{{ ((victories / games_played) * 100) | round | int }}%
Win rate
{% endif %} {# Social stream: active games #} {% if active_games %}

Live games

{% for game in active_games %}
{{ game.course_name or '—' }}
{% if game.is_participant %} ▶ Play {% endif %}
{{ game.format | replace('_', ' ') | title }} · {{ game.holes_count }} holes · {{ game.created_at[:10] }}
{% for p in game.players %}
{{ loop.index }} {% if p.avatar and p.avatar.startswith('/') %} {% else %} {{ p.avatar or '👤' }} {% endif %} {{ p.name }} {{ p.total | round(1) }} pts
{% endfor %}
{% endfor %} {% endif %} {# Recent games #} {% if recent_games %}

Recent games

{% for game in recent_games %}
{{ game.course_name or '—' }}
{{ game.format | replace('_', ' ') | title }} · {{ game.holes_count }} holes · {{ game.created_at[:10] }}
{% for r in game.results %}
{% if loop.first %}🏆{% else %}{{ loop.index }}{% endif %} {% if r.avatar and r.avatar.startswith('/') %} {% else %} {{ r.avatar or '👤' }} {% endif %} {{ r.name }} {{ r.total | round(1) }} pts
{% endfor %}
{% endfor %} {% endif %} {% if not games_played and not active_games %}

No games played yet.

Start a game
{% endif %}
{% endblock %}