{% extends "./base.html" %} {% load i18n %} {% load tz %} {% load static %} {% block "title" %} {% 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 %}
{% 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 %}
{{ amount_out }}
{% trans "transaction status" %}
{{ transaction.message }}
{% trans "started" %}
{{ transaction.started_at|localtime }}
{% if transaction.status == "completed" %}
{% trans "completed" %}
{{ transaction.completed_at|localtime }}
{% endif %}
{% endblock %}