{% extends "layout.html" %} {% block body %}
{% for key, transaction in data.items() -%}

{{transaction.hash}}

From: To: Value:
{% if transaction.senders %} {% for sender in transaction.senders -%} {{sender}}
{%- endfor %} {% else %} Mining Reward {%endif %}
{% for target in transaction.targets -%} {{target.recipient_pk}}
{%- endfor %}
{% for target in transaction.targets -%} {{target.amount}}
{%- endfor %}
{%- endfor %}
{% endblock %}