{% extends "base.html" %} {% block "title" %} Transaction More Info {% endblock %} {% block "content" %}
{% if instructions is not none %}
instructions
{{ instructions|safe }}
{% endif %}
kind
{{ transaction.kind }}
id
{{ transaction.id }}
amount
{{ transaction.amount_in|floatformat }}
status
{{ transaction.status }}
start
{{ transaction.started_at }}
completed
{{ transaction.completed_at }}
{% endblock %}