20 lines
279 B
HTML
20 lines
279 B
HTML
<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>
|