{% extends "base.html" %} {% load i18n %} {% block "title" %} {% trans "Transaction More Info" %} {% endblock %} {% block "content" %}
{% if instructions is not none %}
{% trans "instructions" %}
{{ instructions|safe }}
{% endif %}
{% trans "kind" %}
{% if transaction.kind == "deposit" %} {% trans "deposit" %} {% else %} {% trans "withdrawal" %} {% endif %}
{% trans "ID" %}
{{ transaction.id }}
{% trans "amount received" %}
{{ amount_in }}
{% trans "fee" %}
{{ amount_fee }}
{% if transaction.kind == "deposit" %} {% trans "amount deposited" %} {% else %} {% trans "amount withdrawn" %} {% endif %}
{{ amount_out }}
{% trans "status" %}
{{ transaction.message }}
{% trans "start" %}
{{ transaction.started_at }}
{% if transaction.status == "completed" %}
{% trans "completed" %}
{{ transaction.completed_at }}
{% endif %}
{% endblock %}