diff --git a/web/explorer/explorer-server/templates/pages/address.html b/web/explorer/explorer-server/templates/pages/address.html index bef419b59..1728ced07 100644 --- a/web/explorer/explorer-server/templates/pages/address.html +++ b/web/explorer/explorer-server/templates/pages/address.html @@ -1,227 +1,221 @@ {% extends "base.html" %} {% block footer_classes %}hidden{% endblock %} {% block content %}

Address

-

- {% if sats_address == address %}{{ sats_address }}{% - else %}{{ token_address }}{% endif %} -

+ {% if sats_address == address %} +

{{ sats_address }}

+ {% else %} +

{{ token_address }}

+ {% endif %}
Copy to clipboard

Balance

{{ total_xec|render_sats|safe }} XEC

{% if token_dust > 0 %}

+{{ token_dust|render_sats|safe }} XEC in token dust

{% endif %}

Transactions

{{ address_num_txs }}

{% if sats_address == address %}
{% if total_xec > 0 %} Coins {% else %}
Address is empty
{% endif %} {% if token_dust > 0 %}
eTokens {% endif %}
{% endblock %}