{% 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')}} {{_('Balance')}} {{local_cur_sym}} {{_('Updated At')}}
{{wallet.blockchain}} {% if wallet.status == 'Offline' %}   {{_('Offline')}} {% elif wallet.status.lower().startswith('synced') %}   {{_('Synced')}} {% elif wallet.status.lower().startswith('syncing') %}   {{_('Syncing')}} {% elif wallet.status.lower().startswith('not synced') %}   {{_('Not Synced')}} {% else %}   {{wallet.status}} {% endif %} {{wallet.hot_balance}} {{wallet.cold_balance}} {{wallet.total_balance}} {{wallet.blockchain_symbol}} {{wallet.fiat_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 %}