File size: 256 Bytes
31b916c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<html>
<h2>Final Results</h2>
<body>
<table border=2>
{% for key,value in result.items() %}
<tr>
{# This is the comment sections #}
<th>{{ key }}</th>
<th>{{ value }}</th>
</tr>
{% endfor %}
</table>
</body>
</html> |