1 2 3 4 5 6 7 8 9 10 11 12 13 14
{% extends "layout.html" %} {% block content %} <table> {% for key_name in block.keys() %} <tr> <th>{{ key_name }}</th> <td>{{ block[key_name] }}</td> </tr> {% endfor %} </table> block transactions go here {% endblock %}