Show prices through a minimal webapp

This commit is contained in:
2022-07-10 23:12:26 +02:00
parent 577ad61cf2
commit b190eebe46
8 changed files with 455 additions and 4 deletions

18
views/search_results.tpl Normal file
View File

@@ -0,0 +1,18 @@
<html>
<head>
<title>Fioul</title>
<link rel="stylesheet" href="/static/classless.css">
<link rel="icon" type="image/png" href="/static/favicon.png" />
</head>
<body>
<h1>Prix du m³ de fioul pour Languidic</h1>
<table id="results" class="u-full-width">
% for x in results:
<tr>
<td>{{x.date}}</td>
<td>{{x.price}}</td>
</tr>
% end
</table>
</body>
</html>