{% from "macros.html" import make_short %} {% extends "layout.html" %} {% block body %}

Address

Hash {{make_short(data.hash[142:])}}
Credit {{data.credit}} CHaC
{% for transaction in data.sent -%}
{% if transaction.senders | length > 1%} {% endif %} {% for target in transaction.targets -%} {%- endfor %}
From: {% if transaction.senders %} {% for sender in transaction.senders -%} {{make_short(sender,"address")}} {%- endfor %} {% else %} Mining Reward {%endif %}
Value: Address:
{{target.amount}} {{make_short(target.recipient_pk,"address")}}
{%- endfor %}
{% for transaction in data.received -%}
{% for target in transaction.targets -%} {%- endfor %}
From: {% if transaction.senders %} {% for sender in transaction.senders -%} {{make_short(sender,"address")}} {%- endfor %} {% else %} Mining Reward {%endif %}
Value: Address:
{{target.amount}} {{make_short(target.recipient_pk,"address")}}
{%- endfor %}
{% endblock %}