Add support for managing forwarding rules

This commit is contained in:
Timotej Lazar 2023-05-29 12:24:21 +02:00
parent 52a5b7cd11
commit 765d4a3ce7
8 changed files with 169 additions and 4 deletions

View file

@ -0,0 +1,23 @@
{% extends 'base.html' %}
{% 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.
<form id="request" method="POST">
<table>
<tbody>
{% for rule in rules %}
<tr>
<td><input name="index" type="number" min="0" size="2" value="{{ loop.index * 10 }}" />
<td><input type="hidden" name="name" value="{{ rule.name }}" />
<a href="{{ url_for('rules.edit', index=loop.index0) }}">{{ rule.name }}</a>
{% endfor %}
<tr>
<td><input name="index" type="number" min="0" size="2" />
<td><input name="name" type="text" size="40" />
</table>
<p><button id="submit" type="submit">Shrani</button>
</form>
{% endblock %}