{% extends "base.html" %} {% from "components/ui.html" import anywhere_tag, empty %} {% block title %}Overview · {{ APP_NAME }}{% endblock %} {% block heading %}Overview{% endblock %} {% block subheading %}
Signed in as {{ rights.name }}
{% endblock %} {% block content %} {% if rights.accounts %}

Your accounts

{{ rights.accounts | length }}
{% for account in rights.accounts %} {% endfor %}
AccountYou may
{{ account.email }} {{ account.display_name | or_missing }} · {{ account.id[:16] }}… {% for group in rows[account.id].groups %}{{ group }} {% endfor %} {% for op in rows[account.id].operations %}{{ op }} {% endfor %} {% if "read_and_send_anywhere" in account.warnings %}{{ anywhere_tag() }}{% endif %}
{% else %} {{ empty("No account yet, or none you may use.") }} {% endif %} {% if rights.operations %}

Beyond one account

{% for op in rights.operations %}{{ op }} {% endfor %}
{% endif %} {% endblock %}