{% extends "mailing_list/mailing_list.html" %} {% block page_title %}Mailing list: {{ list_address }}{% endblock %} {% block content %}
Filters
{% for tag in tags.keys()|sort %}
{{ tag }}: {% for value in tags[tag]|sort %} {% set selected = null %} {% if '+'+value in query_tags[tag] %}{% set selected = true %}{% endif %} {% if '-'+value in query_tags[tag] %}{% set selected = false %}{% endif %} {% endfor %}
{% endfor %}
{% for thread in threads %}
#{{ thread.id }} Created {{ thread.datetime|ago }} {% if 'label' in thread['tags'] %} {% for label in thread['tags']['label'] %} {{ label }} {% endfor %} {% endif %}
{% endfor %}
{% endblock %}