{% extends "base.html" %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if category == 'message' %}
Wallet Summary
{% if wallets.rows|length > 0 %}
{% for wallet in wallets.rows %} {% endfor %}
Blockchain Status Wallet Balance Cold Wallet Balance Total Balance USD* Updated At
{{wallet.blockchain}} {% if wallet.status == 'Offline' %} {% elif wallet.status.lower().startswith('synced') %} {% else %} {% endif %}   {{wallet.status}} {{wallet.hot_balance}} {{wallet.cold_balance}} {{wallet.total_balance}} {{wallet.usd_balance}} {{wallet.updated_at | datetimefilter}}
Wallet Details
{% else %}
No wallet status received. Perhaps just starting? Please allow at least 10 minutes to update.
You can also try running 'chia wallet show' on your fullnode's in-container shell to verify.
{% endif %} {% endblock %} {% block scripts %} {% endblock %}