{% extends "base.html" %} {% block title %}Bank Connections{% endblock %} {% block page_title %}Bank Connections{% endblock %} {% block topbar_actions %} {% endblock %} {% block content %} {% if enrollments %}
{% for enrollment in enrollments %} {% set accounts = enrollment.accounts.filter_by(is_active=True).all() %}
{{ enrollment.institution_name or 'Unknown Bank' }}
Connected {{ enrollment.created_at.strftime('%b %d, %Y') }} {% if enrollment.last_synced_at %} · Last synced {{ enrollment.last_synced_at.strftime('%b %d, %H:%M') }} {% endif %}
{% for ta in accounts %}
{{ ta.account_name }}
{{ ta.account_subtype | replace('_',' ') | title }} {% if ta.pfm_account %} · linked to {{ ta.pfm_account.name }} {% else %} · Not mapped {% endif %}
{% if not ta.pfm_account %} Map Account {% endif %}
{% endfor %}
{% endfor %}
{% else %}
No banks connected

Connect your US bank accounts to automatically sync transactions and balances. Once connected, use the Accounts page to sync transactions and refresh balances.

{% endif %}
Setup Status
Teller App ID: {% if teller_app_id %}{{ teller_app_id[:8] }}…{% else %}Not set — add TELLER_APP_ID to .env{% endif %}
Certificate: {{ teller_cert_path or 'Not set' }}
Private Key: {{ teller_key_path or 'Not set' }}
Environment: {{ teller_env }}
{% endblock %} {% block extra_js %} {% endblock %}