{% import "bootstrap/wtf.html" as wtf %} {% from "_macros.html" import formatUser %} {% extends "layout.html" %} {% block content %} {% include "_messages.html" %}

Available Accounts

{% for account in accounts %} {% endfor %}
Actions Account name Available Keys
{{ formatUser(account) }} {% for permission in accounts[account] %} {% if accounts[account][permission] %} {% if permission == "owner" %} {% elif permission == "active" %} {% elif permission == "posting" %} {% elif permission == "memo" %} {% endif %} {% endif %} {% endfor %}

Import Acount

{{ wtf.quick_form(import_accountpwd) }}

Import (any) Private Key

{{ wtf.quick_form(import_wifForm) }}
{% endblock %}