Management, update arduino, add initial webapp
This commit is contained in:
19
raspi/templates/index.html
Normal file
19
raspi/templates/index.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>Włącz</th>
|
||||
{% for n in range(10) %}
|
||||
<td><a href="/set/{{ n }}">{{ n + 1 }}</a></td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Wyłącz</th>
|
||||
{% for n in range(10) %}
|
||||
<td><a href="/clear/{{ n }}">{{ n + 1 }}</a></td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user