{% extends "layout.html" %} {% block body %}

Welcome back, {{ current_user.username }}! This is your mailing lists service. Documentation for its use is available here.

{% if cfg("lists.sr.ht", "allow-new-lists", default="yes") == "yes" or current_user.user_type.value == "admin" %} Create new list {{icon("caret-right")}} {% endif %} View your profile {{icon("caret-right")}}

{% if any(subs) %} {% for list in subs %}

{{list.owner.canonical_name}}/{{list.name}}

Last active {{ list.updated | date }}
{% endfor %} {% endif %}
{% if notice %}
{{notice}}
{% endif %} {% if any(recent) %}

Recent activity

{% for email in recent %}

{{ email.subject }} {{ email.created | date }}

From {% if current_user %} {{ email.parsed().get('From') }} {% else %} {{ parseaddr(email.parsed().get('From'))[0] }} {% endif %} to {{email.list.owner.canonical_name}}/{{email.list.name}}

{{ format_body(email, limit=15) }}
{% endfor %}
{% else %}

Nothing to report here. Try participating in some mailing lists!

{% endif %}
{% endblock %}