{% extends "layout.html" %} {% import 'utils.html' as utils %} {% block title %}DMs - {{ config.NAME }}{% endblock %} {% block header %} {% endblock %} {% block content %}
{% for thread in threads %}

With {{ ", ".join(thread.participants) }} {{ thread.len }} message{% if thread.len > 1 %}s{% endif %}

{{ utils.display_note(thread.last_reply.activity.object, meta=thread.last_reply.meta) }} {% endfor %}
{% endblock %}