{% if title %} {{ title|safe }} {% else %} {% trans "Transaction More Info" %} {% endif %}
{% endblock %}
{% block "content" %}
{% if instructions is not none %}
{# instructions came from Polaris' instructions_for_pending_deposit() #}
{% trans "instructions" %}
{{ instructions|safe }}
{% endif %}
{# Instructions, if present, came from the anchor's more_info extension #}
{# Note that the anchor's block must detect if instructions are necessary #}
{# The anchor must determine the appropriate instructions (or none) from their own context #}
{% block "instructions" %}
{% endblock %}
{% trans "transaction type" %}
{% if transaction.kind == "deposit" %}
{% trans "deposit" %}
{% else %}
{% trans "withdrawal" %}
{% endif %}
{% trans "Transaction ID" %}
{{ transaction.id }}
{% if transaction.status == "incomplete" or transaction.status == "pending_user_transfer_start" %}
{% trans "send amount" %}
{% else %}
{% trans "amount sent" %}
{% endif %}
{{ amount_in }}
{% trans "fees" %}
{{ amount_fee }}
{% if transaction.status != "completed" and transaction.amount_out %}
{% trans "receive amount" %}
{% else %}
{% trans "amount received" %}
{% endif %}