{% include "header.html" %}
{{ heading(3,"Your account","account") }}
Display name: {{ user.name if user.name else "None" }}
Address: {{ user.address }}
{% if user.public_key %}
PGP public key:
{{ user.public_key | escape }}
{% else %}PGP public key: None.{% endif %}
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" %}