{% extends "base.html" %} {% load url from future %} {% 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' %}

{% if mlist.display_name %} {{ mlist.display_name }} {% else %} {{ mlist.name|until:"@" }} {% endif %}

{{ mlist.description|default_if_none:"" }}

Loading...

Post volume over the past 30 days.

+ Start a new thread

Activity Summary

The following statistics are from the past 30 days:

  • {{ mlist.recent_participants_count }} participants
  • {{ mlist.recent_threads_count }} discussions

Most active posters

{% for poster in top_posters %}
#{{forloop.counter}}
{% gravatar poster.email 40 %}
{{ poster.name }} {{ poster.count }} posts
{% endfor %}

Recently active discussions

{% for thread in most_active_threads %} {% include "threads/summary_thread.html" %} {% endfor %}

Most active discussions

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

Discussion by category

{% for category, threads in threads_by_category.items %}

{{ category.name|upper }}

    {% for thread in threads %}
  • {% include "threads/summary_thread.html" %}
  • {% endfor %}
{% empty %}

No category has been set this month (yet).

{% 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 %}
{% endblock %} {% block additionaljs %} {% endblock %}