{% include "header.html" %}
{{ heading(3,"Your account","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." }}
{{ heading(4,"List Subscriptions") }}

{{ subscriptions | length }} subscription(s)

{% for (s, list) in subscriptions %}
{{ list.name }}
{% endfor %}
{{ heading(4,"Account Settings") }}
Change display name
Change SSH public key
Change PGP public key
Remove PGP public key
{% include "footer.html" %}