{% extends "base.html" %} {% block title %}{{ _("Accounts") }} · Wealth Dashboard{% endblock %} {% block heading %}{{ _("Accounts") }}{% endblock %} {% block content %}
{% if people %}{% endif %} {% for a in s.accounts %} {% if people %} {% endif %} {% endfor %}
{{ _("Account") }}{{ _("Whose") }}{{ _("Source") }}{{ _("Balance") }} {{ _("Transactions") }}{{ _("As of") }}
{{ a.name }} {{ type_label(a.type) }} · {{ a.currency }}{% if a.people %}{{ a.people | join(", ") }}{% else %}{{ _("nobody yet") }}{% endif %}{% if a.bank %}{{ a.bank }}{{ _("connected") }} {% elif a.transactions %}{{ _("imported file") }} {% else %}{{ _("nothing yet") }}{% endif %} {% if a.balance is not none %}{{ money(a.balance, a.balance_currency) }}{% else %}—{% endif %} {{ a.transactions or '—' }} {{ d(a.balance_as_of) }} {{ _("Edit") }} {# Straight to the delete card, because a delete nobody can find is a delete that gets asked for. #} {{ _("Delete") }}
{% if s.hidden_accounts %}

{{ _n(s.hidden_accounts, "{n} more account belongs to somebody else, or to nobody yet — switch to Everyone to see it.", "{n} more accounts belong to somebody else, or to nobody yet — switch to Everyone to see them.") }}

{% endif %}

{{ _("Add an account") }} {{ _("Move in from Financial Planner") }}

{% endblock %}