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

Leaderboard

{% for p, label in [('week','This week'),('month','This month'),('all','All time')] %} {{ label }} {% endfor %}
Top Posters
    {% for u, n in top_posters %}
  1. {{ u }} {{ n }}
  2. {% else %}
  3. No posts in this window.
  4. {% endfor %}
Most Active Boards
    {% for name, bid, n in top_boards %}
  1. {{ name }} {{ n }}
  2. {% else %}
  3. No board activity.
  4. {% endfor %}
Top Shouters
    {% for u, n in top_shouters %}
  1. {{ u }} {{ n }}
  2. {% else %}
  3. No shouts in this window.
  4. {% endfor %}
Top Reactors
    {% for u, n in top_reactors %}
  1. {{ u }} {{ n }}
  2. {% else %}
  3. No reactions yet.
  4. {% endfor %}
{% endblock %}