{% extends "base.html" %} {% block title %}Leaderboard — WeightTracker{% endblock %} {% block content %}

📊 % Weight Lost Comparison

{% if ranked %}
{% for u in ranked %} {% endfor %}
Rank Name Start Current Lost (kg) Lost (%) Goal Progress Check-ins
{{ loop.index }} {{ u.display_name or u.username }} {{ '%.1f' % (u.starting_weight_kg | float) if u.starting_weight_kg else '—' }} {{ '%.1f' % (u.current_weight | float) if u.current_weight else '—' }} {{ '%+.1f' % (-u.weight_lost) if u.weight_lost != 0 else '0.0' }} {{ '%.1f' % u.pct_lost }}% {% if u.goal_progress is not none %}
{{ '%.0f' % u.goal_progress }}%
{% else %} {% endif %}
{{ u.total_checkins }}
{% else %}
🏆

No competitors yet

Start checking in to appear on the leaderboard!

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}