{% extends 'base.html' %} {% block title %}Leaderboard — WildWatch{% endblock %} {% block content %}
🏆

Community Leaderboard

Top conservation contributors ranked by points

How to Earn Points
{% for icon, label, pts in point_guide %}
{{ icon }}
{{ pts }}
{{ label }}
{% empty %}
🗑️
+5
Trash Cleanup
🦋
+3
Wildlife Upload
🌿
+2
Scenic Upload
🤝
+3
Referral
❤️
+1
Like Received
💬
+1
Comment Received
{% endfor %}

Top Contributors

{% for profile in top_profiles %} {% with badge=profile.get_badge %}
{% if forloop.counter == 1 %}🥇 {% elif forloop.counter == 2 %}🥈 {% elif forloop.counter == 3 %}🥉 {% else %}#{{ forloop.counter }} {% endif %}
{% if profile.profile_photo %} {% else %}
{{ profile.user.username|first|upper }}
{% endif %}
{{ profile.user.username }} {{ badge.icon }} {{ badge.label }}
⭐ {{ profile.points }}
{% endwith %} {% empty %}
🏆

No rankings yet

{% if user.is_authenticated %} Upload & Claim Top Spot {% endif %}
{% endfor %}
{% if user.is_authenticated %}
Upload & Earn Points
{% endif %}
{% endblock %}