{% macro tx_item(tx) %}
  • {{tx['datetime'].strftime('%Y-%m-%d %H:%M')}} Blockheight: {% if tx['type'] == 'pool' %} soon^tm {% else %} {{tx['height']}} {% endif %}
    {{tx['txid'][:32]}}... {% if tx['type'] in ['in', 'pool'] %} + {% else %} - {% endif %} {{tx['amount_human']|round(3)}} WOW {% if 'amount_usd' in tx %} ➞ $ {{tx['amount_usd']}} {% endif %}
  • {% endmacro %}