Remove unimplemented DNAT settings

For now.
This commit is contained in:
Timotej Lazar 2023-01-26 16:16:00 +01:00
parent 388061130e
commit 3cf207047e
4 changed files with 0 additions and 35 deletions

View file

@ -1,15 +0,0 @@
{% extends 'base.html' %}
{% block content %}
<p>
Tu lahko urejate preusmeritve DNAT za IPv4.
<form id="request" method="POST">
{% for int_ip, ext_ip in dnat %}
<p>
<input name="ext_ip" value="{{ ext_ip }}"/>
<input name="int_ip" value="{{ int_ip }}"/>
{% endfor %}
<button id="submit" type="submit">Shrani</button>
</form>
{% endblock %}

View file

@ -7,7 +7,6 @@
<li><a href="{{ url_for('config.edit', name='groups') }}">Skupine
<li><a href="{{ url_for('config.edit', name='forwards') }}">Luknje
{% endif %}
<li><a href="{{ url_for('dnat.index') }}">DNAT
<li><a href="{{ url_for('vpn.index') }}">VPN
</ul>
{% endblock %}