commit | author | age | ||
948497 | 1 | <!DOCTYPE html> |
SP | 2 | <html lang="en"> |
3 | <head> | |
4 | <meta charset="UTF-8"> | |
5 | <title>Hello world stran</title> | |
6 | </head> | |
7 | <body> | |
8 | <h1>hello world</h1> | |
9 | sin(pi/2)={{ sinpi2 }} | |
10 | <hr /> | |
11 | Zahtevek podal: {{ moje_ime }} | |
12 | <br /> | |
13 | ||
14 | <table> | |
15 | <tr> | |
16 | <th>Senzor ID</th> | |
17 | <th>Podatek</th> | |
18 | <th>Datum</th> | |
19 | </tr> | |
20 | {% for row in data_table %} | |
21 | <tr> | |
22 | <td>{{ row.sensor_id }}</td> | |
23 | <td>{{ row.data }}</td> | |
24 | <td>{{ row.date }}</td> | |
25 | </tr> | |
26 | {% endfor %} | |
27 | </table> | |
28 | ||
29 | ||
30 | </body> | |
31 | </html> |