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

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

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

{% if user.is_authenticated %}

Discussions You've Flagged ({{ flagged_threads|length }})

{% include "hyperkitty/fragments/overview_threads.html" with threads=flagged_threads empty="You have not flagged any discussions (yet)." %}

Discussions You've Posted to ({{ threads_posted_to|length }})

{% include "hyperkitty/fragments/overview_threads.html" with threads=threads_posted_to empty="You have not posted to this list (yet)." %}
{% endif %}

Recently active discussions

{% include "hyperkitty/fragments/overview_threads.html" with threads=most_active_threads empty="No discussions this month (yet)." %}

Most active discussions

{% include "hyperkitty/fragments/overview_threads.html" with threads=top_threads empty="No discussions this month (yet)." %}

Discussion by category

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

{{ category.name|upper }}

    {% for thread in threads|slice:":5" %}
  • {% include "hyperkitty/threads/summary_thread.html" %}
  • {% endfor %} {% if threads|length > 5 %}
  • {% endif %}
{% empty %}

No category has been set this month (yet).

{% endfor %}

Activity Summary

Post volume over the past 30 days.

Loading...

the past 30 days:

  • {{ mlist.recent_participants_count }} participants
  • {{ mlist.recent_threads.count }} discussions

Most active posters

{% for poster in mlist.top_posters %}
#{{forloop.counter}}
{% gravatar poster.address 40 %}
  • {{ poster.name }}
  • {{ poster.count }} posts
{% endfor %}
{% if top_author %}

Prominent posters

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