view_ip.html: use ?/IP endpoint to remove bans and add notes

This commit is contained in:
Zankaria 2024-12-29 00:19:48 +01:00
parent 6acfbfc9b3
commit 2bb7611c5e

View File

@ -43,7 +43,7 @@
{% endif %} {% endif %}
{% if mod|hasPermission(config.mod.create_notes) %} {% if mod|hasPermission(config.mod.create_notes) %}
<form action="" method="post" style="margin:0"> <form action="?/IP/{{ ip|url_encode(true) }}" method="post" style="margin:0">
<input type="hidden" name="token" value="{{ security_token }}"> <input type="hidden" name="token" value="{{ security_token }}">
<table> <table>
<tr> <tr>
@ -75,7 +75,7 @@
<legend>{{ bans_length }} {% trans %}ban on record{% plural notes_length %}bans on record{% endtrans %}</legend> <legend>{{ bans_length }} {% trans %}ban on record{% plural notes_length %}bans on record{% endtrans %}</legend>
{% for ban in bans %} {% for ban in bans %}
<form action="" method="post" style="text-align:center"> <form action="?/IP/{{ ip|url_encode(true) }}" method="post" style="text-align:center">
<input type="hidden" name="token" value="{{ security_token }}"> <input type="hidden" name="token" value="{{ security_token }}">
{% include 'mod/ban_history.html' %} {% include 'mod/ban_history.html' %}
<input type="hidden" name="ban_id" value="{{ ban.id }}"> <input type="hidden" name="ban_id" value="{{ ban.id }}">