{% extends "base.html" %} {% load static %} {% block title %} Team Leaderboard {% endblock title %} {% block description %} Check out the top performing teams on the leaderboard. View their scores, names, and rankings. {% endblock description %} {% block keywords %} Team Leaderboard, Top Teams, Scores, Rankings, Team Performance {% endblock keywords %} {% block og_title %} Team Leaderboard - Top Performing Teams {% endblock og_title %} {% block og_description %} Explore the leaderboard to see the top performing teams and their rankings. {% endblock og_description %} {% load gravatar %} {% block content %} {% include "includes/sidenav.html" %}

Global Teams Leaderboard

Discover the top-performing teams and their achievements

{% if not leaderboard %}

No Teams Available

There are no teams registered in the leaderboard yet.

{% else %}
{% for team, points in leaderboard %}
{% if team.logo %} {{ team.name }} {% else %}
{% endif %} {% if team.rank %}
{{ forloop.counter }}
{% endif %}

{{ team.name }}

{% if team.rank %} {{ team.rank }} {% endif %}
{{ points }}
Points
{% endfor %}
{% if leaderboard.has_other_pages %}
{% if leaderboard.has_previous %} Previous {% else %} Previous {% endif %} Page {{ leaderboard.number }} of {{ leaderboard.paginator.num_pages }} {% if leaderboard.has_next %} Next {% else %} Next {% endif %}
{% endif %} {% endif %}
{% endblock content %}