Show prices through a minimal webapp
This commit is contained in:
18
views/search_results.tpl
Normal file
18
views/search_results.tpl
Normal 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>
|
||||
Reference in New Issue
Block a user