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

~{{ user.username }}

{% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %}

{{user.bio | md}}

{% endif %}
{% if any(lists) %}
{% for list in lists %}

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

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

This user has no mailing lists.

{% endif %}
{% endblock %}