{% if reload_seconds %}
{% endif %}
{% if transactions.rows|length > 0 %}
{{blockchain|capitalize}} {{_('Transactions')}}
{% for wallet in wallets %}
{{wallet.name}}
{% endfor %}
{{_('Type')}}
{{_('To')}}
{{_('Status')}}
{{_('Amount')}}
{{_('Created At')}}
{% for transaction in transactions.rows %}
{{transaction.type}}
{{transaction.to}}
{{transaction.status}}
{{transaction.amount}}
{{transaction.created_at}}
{% endfor %}
{% else %} {% autoescape false %}
{{_('No transactions were currently available for')}} {{blockchain|capitalize}}.
{{_('Perhaps the wallet is paused, or not yet synced, or no transactions exist yet.')}}
{{_('Please ensure the Machinaris wallet for this blockchain is Synced below.')}}
{{_('Also ensure the blockchain fullnode is not Offline, by checking the Workers page.')}}
{% endautoescape %}
{% endif %}
Loaded at: {{ global_config.now }}
{% block scripts %}{% endblock %}