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

Activities on the list over the last 30 days

Recently active discussions

{% for thread in most_active_threads %}
#{{forloop.counter}} {{ thread.subject|strip_subject:mlist }}
    {% if thread.category_tag %}
  • {{thread.category}}
  • {% endif %} {% if thread.category %}
  • {{thread.category}}
  • {% endif %} {% if use_mockups %}
  • +0/-0
  • {% endif %}
  • {{ thread.participants|length }}
  • {{ thread.length }}
{% endfor %}

Top discussions the last 30 days

{% for thread in top_threads %}
#{{forloop.counter}} {{ thread.subject|strip_subject:mlist }}
    {% if thread.category_tag %}
  • {{ thread.category }}
  • {% endif %} {% if thread.category %}
  • {{ thread.category }}
  • {% endif %} {% if use_mockups %}
  • +0/-0
  • {% endif %}
  • {{ thread.participants|length }}
  • {{ thread.length }}
{% endfor %}
{% if top_author %}

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

{% 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 %}
{% include 'threads/month_list.html' %} {% endblock %} {% block additionaljs %} {% endblock %}