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