{% if title %} {{ title|safe }} {% else %} {% trans "Transaction More Info" %} {% endif %}
{% endblock %}
{% block "content" %}
{# 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 %}
{% block "info_items" %}
{% trans "transaction type" %}
{% if "deposit" in transaction.kind %}
{% 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 %}