diff options
author | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 01:26:41 +0300 |
---|---|---|
committer | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 01:26:41 +0300 |
commit | 8314dc42dc21185f556b4bb257ce198378d30d71 (patch) | |
tree | ab11a973c920f99063f55a58ed2affc397fd8945 /web/kbn_templates/routing_rules.j2 | |
parent | 63ff5dd151ca6a21dbae8a654d81cf60f2f6f0cc (diff) |
web_kbn: relative paths
Diffstat (limited to 'web/kbn_templates/routing_rules.j2')
-rw-r--r-- | web/kbn_templates/routing_rules.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/kbn_templates/routing_rules.j2 b/web/kbn_templates/routing_rules.j2 index 61b68c9..3dcc709 100644 --- a/web/kbn_templates/routing_rules.j2 +++ b/web/kbn_templates/routing_rules.j2 @@ -10,14 +10,14 @@ {% 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> + <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"> + <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"> |