Add some words to templates

Also some tags. Also remove some other words and some other tags.
This commit is contained in:
Timotej Lazar 2024-05-02 23:33:13 +02:00
parent 32af5a43c0
commit 0e9d1ce6f0
7 changed files with 50 additions and 23 deletions

View file

@ -2,10 +2,12 @@
{% block content %}
<p>
Urejate prioritete pravil za požarni zid. Pravilo odstranite tako, da izbrišete pripadajočo številko. V zadnji vrstici lahko dodate novo pravilo.
Urejate posredovalna pravila. Pravila razvrstimo s stolpcem <em>N</em>. Če vrednost pobrišemo, pravilo odstranimo.
<form id="request" method="POST">
<table>
<thead>
<th>N<th>Pravilo
<tbody>
{% for rule in rules %}
<tr>
@ -15,7 +17,7 @@ Urejate prioritete pravil za požarni zid. Pravilo odstranite tako, da izbrišet
{% endfor %}
<tr>
<td><input name="index" type="number" min="0" size="4" />
<td><input name="name" type="text" size="40" />
<td><input name="name" type="text" size="40" placeholder="novo pravilo" />
</table>
<p><button id="submit" type="submit">Shrani</button>
</form>