{% include "header.html" %}

Your account

Display name: {{ user.name if user.name else "None" }}
Address: {{ user.address }}
PGP public key: {{ user.public_key if user.public_key else "None." }}
SSH public key: {{ user.password if user.password else "None." }}

List Subscriptions

{{ subscriptions | length }} subscription(s)

{% for (s, list) in subscriptions %}
{{ list.name }}
{% endfor %}

Account Settings

Change display name
Change SSH public key
Change PGP public key
Remove PGP public key
{% include "footer.html" %}