{% extends "profile.html" %} {% block title %} {{user.canonical_name}}'s mailing lists {% endblock %} {% block sidebar %} {% if current_user.id == user.id %} Create new list {{icon("caret-right")}} {% endif %} {% endblock %} {% block content %} {% if lists or search %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% endif %} {% if search and not lists %}
No mailing lists found for "{{search}}".
{% elif not lists %}
This user does not have any mailing lists.
{% endif %}
{% for list in lists %}

{{list.owner.canonical_name}}/{{list.name}} {% if list.visibility != Visibility.PUBLIC %} {{ list.visibility.value.lower() }} {% endif %}

{% if list.description %} {{list.description|md}} {% endif %} {% if list.last_activity %} Last active {{ list.last_activity | date }} {% endif %}
{% endfor %}
{{pagination()}} {% endblock %}