{% extends "base.html" %} {% load hk_generic %} {% load gravatar %} {% load storm %} {% block title %} {{ mlist.display_name|default:mlist.name|escapeemail }} - {{ app_name|title }} {% endblock %} {% block content %}
{% include 'threads/month_list.html' %}

Activities on the list over the last 30 days

Recently active discussions

{% for thread in most_active_threads %} {% include "threads/summary_thread.html" with counter=forloop.counter %} {% endfor %}

Top discussions the last 30 days

{% for thread in top_threads %} {% include "threads/summary_thread.html" with counter=forloop.counter %} {% endfor %}
{% if top_author %}

Prominent discussion maker

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

Tag cloud

{% endif %}
{% if threads_per_category %}

Discussion by topic the last 30 days

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

{{category}}

    {% for email in thread %}
  • {{email.title}}
  • {% endfor %}
{% endfor %}
{% endif %}
{% endblock %} {% block additionaljs %} {% endblock %} {# vim: set noet: #}