{% extends "base.html" %}
{% block title %}Leaderboard{% endblock %}
{% load static %}
{% block extra_js %}{% endblock %}
{% block content %}
LeadBreederboard
Most unique species bred and sold
| Rank |
User |
Species |
{% for data in unique_species|slice:":10" %}
| {{ data.rank_unique_species }} |
{{ data.user }} |
{{ data.number_unique_species }} |
{% endfor %}
Most lots sold
| Rank |
User |
Lots |
{% for data in total_lots|slice:":10" %}
| {{ data.rank_total_lots }} |
{{ data.user }} |
{{ data.number_total_lots }} |
{% endfor %}
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!
| Rank |
User |
Number |
{% for data in total_bids|slice:":10" %}
| {{ data.rank_total_bids }} |
{{ data.user }} |
{{ data.number_total_bids }} |
{% endfor %}
{% endblock %}