This repository has been archived on 2021-12-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
D3/D3-Visualiser/app/results.html
2021-12-10 12:06:50 +01:00

14 lines
271 B
HTML

<!doctype html>
<html>
<body>
<table border = 1>
{% for key, value in result.items() %}
<tr>
<th> {{ key }} </th>
<td> {{ value }} </td>
</tr>
{% endfor %}
</table>
</body>
</html>