{% 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 %} {% 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 %}
{{ amount_in_symbol }} {{ transaction.amount_in|floatformat:amount_in_significant_decimals }}
{% if transaction.amount_fee %} {% if transaction.quote %} {% if transaction.fee_asset == amount_in_asset %}
{% trans "fees" %}
{{ amount_fee_symbol }} {{ transaction.amount_fee|floatformat:amount_fee_significant_decimals }}
{% trans "exchange amount" %}
{{ amount_fee_symbol }} {{ exchange_amount|floatformat:amount_fee_significant_decimals }}
{% endif %} {% else %}
{% trans "fees" %}
{{ amount_fee_symbol }} {{ transaction.amount_fee|floatformat:amount_fee_significant_decimals }}
{% endif %} {% endif %} {% if transaction.quote and transaction.quote.price %}
{% trans "exchange rate" %}
{{ amount_in_symbol }} 1.00 = {{ amount_out_symbol }} {{ price_inversion|floatformat:price_inversion_significant_decimals }}
{% endif %} {% if transaction.amount_fee and transaction.quote and transaction.fee_asset == amount_out_asset %}
{% trans "exchanged amount" %}
{{ amount_fee_symbol }} {{ exchanged_amount|floatformat:amount_fee_significant_decimals }}
{% trans "fees" %}
{{ amount_fee_symbol }} {{ transaction.amount_fee|floatformat:amount_fee_significant_decimals }}
{% endif %} {% if transaction.amount_out %}
{% if transaction.status != "completed" %} {% trans "receive amount" %} {% else %} {% trans "amount received" %} {% endif %}
{{ amount_out_symbol }} {{ transaction.amount_out|floatformat:amount_out_significant_decimals }}
{% endif %}
{% trans "transaction status" %}
{{ transaction.message }}
{% trans "started" %}
{{ transaction.started_at|localtime }}
{% if transaction.status == "completed" %}
{% trans "completed" %}
{{ transaction.completed_at|localtime }}
{% endif %} {% endblock %}
{% endblock %}