{% extends "base.html" %} {% block title %}Leaderboard{% endblock %} {% load static %} {% block extra_js %}{% endblock %} {% block content %}

LeadBreederboard


Most unique species bred and sold


{% for data in unique_species|slice:":10" %} {% endfor %}
Rank User Species
{{ data.rank_unique_species }} {{ data.user }} {{ data.number_unique_species }}

Most lots sold


{% for data in total_lots|slice:":10" %} {% endfor %}
Rank User Lots
{{ data.rank_total_lots }} {{ data.user }} {{ data.number_total_lots }}

Most lots bid on


Here's a tip: only successful bids count towards this. If you see the You've been outbid message, it means your bid didn't count. You don't have to win the lot to get points here, just be the high bidder at least once. Bid early and bid high to keep others from getting points in this category!
{% for data in total_bids|slice:":10" %} {% endfor %}
Rank User Number
{{ data.rank_total_bids }} {{ data.user }} {{ data.number_total_bids }}

{% endblock %}