{% extends "base.html" %} {% block page_container -%}
Transaction
  ID {{ transaction.txid }}
  Block {% for block_dao in transaction_dao.blocks %}{{ block_dao.block_hash }}
{% else %}None{% endfor %}
  Version {{ transaction.version }}
  Timestamp {{ transaction.timestamp_dt | utc_datetime }}
  Address {{ transaction.address }}
  Public Key {{ transaction.public_key or None }}
  Signature {{ transaction.signature or None }}
UTXO Inflows
{%- for i in inflows %} {%- else %} {%- endfor %} {%- if inflows %} {%- endif %}
Outflow Transaction ID Outflow Index Amount
{{ i[0].outflow_txid }} {{ i[0].outflow_idx }} {{ i[2].amount }}
No Inflows
{{ inflow_total }}
UTXO Outflows
{%- for o in outflows %} {%- endfor %}
Index Address Subject Forgive Support Amount
{{ loop.index0 }} {{ o.address or None }} {{ o.subject }}{% if o.subject %} ({{ o.subject | human_subject }}){% endif %} {{ o.forgive }}{% if o.forgive %} ({{ o.forgive | human_subject }}){% endif %} {{ o.support }}{% if o.support %} ({{ o.support | human_subject }}){% endif %} {{ o.amount }}
{{ outflow_total }}
{%- endblock %}