friwall/web/templates/dnat/index.html

16 lines
341 B
HTML
Raw Normal View History

2022-01-03 10:33:02 +00:00
{% 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 %}