{% extends "base.html" %} {% block content %}

{{token.upper()}} Token Balance

{{ form.hidden_tag() }} {{ form.address(class="form-control", placeholder="Enter FLO address", length=34) }} {% for error in form.address.errors %} [{{ error }}] {% endfor %} {% if balance %}

Balance - {{balance}} RMTRelated transactions

{% endif %}

Latest Transactions

{% for item in transactionHistoryTable %} {% endfor %}
Block no. Sender Receiver Amount View @ Block explorer
{{item[1]}} {{item[2]}} {{item[3]}} {{item[4]}}

Balances

{% for item in balanceTable %} {% endfor %}
Address Balance
{{item[0]}} {{item[1]}}
{% endblock %}