{% extends "base.html" %} {% block title %}Leaderboard — WeightTracker{% endblock %} {% block content %}
Ranked by % body weight lost. May the best loser win!
| 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 }} |
Start checking in to appear on the leaderboard!