30 lines
1.1 KiB
Django/Jinja
30 lines
1.1 KiB
Django/Jinja
{% extends "base.j2" %}
|
|
|
|
{% block content %}
|
|
{% include 'routing_header.j2' %}
|
|
|
|
<div class="mt-2 text-secondary">{{ "routing_iptables_note"|lang }}</div>
|
|
|
|
{% for set, ips in sets.items() %}
|
|
<h6 class="text-primary mt-4">{{ set }}</h6>
|
|
|
|
{% if ips %}
|
|
{% for ip in ips %}
|
|
<div>{{ ip }} (<a href="/routing/rules.cgi?action=del&set={{ set }}&ip={{ ip }}" onclick="return confirm('{{ 'routing_deleting_confirmation'|lang|format(ip, set) }}')">{{ "routing_del"|lang }}</a>)</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
<span class="text-secondary">{{ "routing_no_records"|lang }}</span>
|
|
{% endif %}
|
|
|
|
<div style="max-width: 300px">
|
|
<form method="get" action="/routing/rules.cgi">
|
|
<input type="hidden" name="action" value="add">
|
|
<input type="hidden" name="set" value="{{ set }}">
|
|
<div class="input-group mt-2">
|
|
<input type="text" name="ip" placeholder="x.x.x.x/y" class="form-control">
|
|
<button type="submit" class="btn btn-outline-primary">{{ "routing_add"|lang }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %} |