{% extends 'base.html' %}
{% block header %}
    {% block title %}<h1>Token Log</h1>{% endblock %}
{% endblock %}

{% block content %}
    <table class="table">
<thead>
<td>Date</td>
<td>Timestamp</td>
<td>Message</td>
</thead>
<tbody>
{% for line in log %}
    <tr>
    <td>{{ line[0] }}</td>
    <td>{{ line[1] }}</td>
    <td>{{ line[2] }}</td>
    </tr>
{% endfor %}
</tbody>
</table>
{% endblock %}