{% extends "base.html" %} {% block title %}Profile — Friday Budgeting Pro{% endblock %} {% block content %}

Profile

{% if saved %}
Settings saved.
{% endif %}

Settings

Data

{% if action_result %} {% if action_result.ok %}
{{ action_result.message }}
{% if action_result.url %}

Open Reconnect Link

{% endif %} {% else %}
{{ action_result.message }}
{% endif %} {% endif %}

Linked Accounts

+ Connect a bank
{% if connections %} {% for conn in connections %} {% endfor %}
Institution Status Last Synced Actions
{{ conn.institution_name if conn.institution_name else "—" }} {{ conn.status }} {% if conn.last_synced_at %} Loading… {% else %} Never {% endif %} {% if conn.status == "needs_reauth" %}
{% endif %}
{% if accounts %}

Account Descriptions

Optional context shown to the AI classifier when routing transactions from each account.

{% for acct in accounts %} {% endfor %} {% if accounts | selectattr('name', 'none') | selectattr('mask', 'none') | list %}

Note: some accounts are missing names. Run sync to refresh from Plaid.

{% endif %}
{% endif %} {% else %}

No bank accounts connected yet.

{% endif %}
{% endblock %}