{% extends "hyperkitty/base.html" %} {% load i18n %} {% 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' with pagename='overview' %}

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

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

{% if user.is_authenticated %}

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

{% include "hyperkitty/fragments/overview_threads.html" with threads=flagged_threads empty=empty_messages.flagged %}

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

{% include "hyperkitty/fragments/overview_threads.html" with threads=threads_posted_to empty=empty_messages.posted %}
{% endif %}

{% trans "Recently active discussions" %}

{% include "hyperkitty/fragments/overview_threads.html" with threads=most_active_threads empty=empty_messages.active %}

{% trans "Most active discussions" %}

{% include "hyperkitty/fragments/overview_threads.html" with threads=top_threads empty=empty_messages.active %}

{% trans "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 %}

{% trans "No category has been set this month (yet)." %}

{% endfor %}

{% trans "Activity Summary" %}

{% trans "Post volume over the past 30 days." %}

{% trans 'Loading...' %}

{% trans "the past 30 days:" %}

  • {{ mlist.recent_participants_count }} {% trans "participants" %}
  • {{ mlist.recent_threads.count }} {% trans "discussions" %}

{% trans "Most active posters" %}

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

{% trans "Prominent posters" %}

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