{% 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}} {% if email.category_tag %} {{email.category}} {% else %} {{email.category}} {% endif %} 0 {{email.participants|length}} {{email.answers}} {% endfor %} Top discussions the last 30 days {% for email in top_threads %} #{{forloop.counter}} {{email.subject}} {% if email.category_tag %} {{email.category}} {% else %} {{email.category}} {% endif %} 0 {{email.participants|length}} {{email.answers}} {% 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 }} {% for ar_month in value %} {{ ar_month|tomonth }} {% endfor %} {% endfor %} {% endblock %} {% block additionaljs %} {% endblock %}