{% 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 available for')}} {{blockchain|capitalize}}.
{{_('Perhaps the wallet is not yet synced, or no wallet activity yet.')}}
{{_('Please ensure the Machinaris fullnode worker for this blockchain is running by checking the Workers page.')}}
{% endautoescape %}
{% endif %}
Loaded at: {{ global_config.now }}
{% block scripts %}{% endblock %}