{% extends "base.html" %} {% load poll_extras %} {% load gravatar %} {% block additional_stylesheets %} {% endblock %} {% block content %}

Recently active discussions

{% for email in most_active_threads %}
#{{forloop.counter}} {{email.subject}}
{% endfor %}

Top discussions the last 30 days

{% for email in top_threads %}
#{{forloop.counter}} {{email.subject}}
{% endfor %}

Prominent discussion maker

{% for author in top_author %}
#{{forloop.counter}}
{% if author.email %} {% gravatar_img_for_email author.email 40 %}
{% endif %}
{{author.name}}
+{{author.kudos}} kudos
{% endfor %}

Tag cloud

Discussion by topic the last 30 days

{% for category, thread in threads_per_category.items %}

{{category}}

    {% for email in thread %}
  • {{email.title}}
  • {% endfor %}
{% endfor %}
{% for key, value in archives_length|sort %}

{{ key }}

{% endfor %}
{% endblock %} {% block additionaljs %} {% endblock %}