diff options
author | bai | 2020-07-21 06:41:28 -0400 |
---|---|---|
committer | bai | 2020-07-21 06:41:28 -0400 |
commit | cce54237952b104efc98afec3f3edfd0cb5ed714 (patch) | |
tree | 6dfdebde0a8bc3e7fef05e6e54496c3aff7de36d /cgi/templates | |
parent | acedc645c398d6afeff3a8f2e500220da3c8549d (diff) | |
download | weabot-cce54237952b104efc98afec3f3edfd0cb5ed714.tar.gz weabot-cce54237952b104efc98afec3f3edfd0cb5ed714.tar.xz weabot-cce54237952b104efc98afec3f3edfd0cb5ed714.zip |
Implementados bans de rangos compatibles con IPv4 y IPv6
Diffstat (limited to 'cgi/templates')
-rw-r--r-- | cgi/templates/banned.html | 11 | ||||
-rw-r--r-- | cgi/templates/manage/bans.html | 9 |
2 files changed, 9 insertions, 11 deletions
diff --git a/cgi/templates/banned.html b/cgi/templates/banned.html index 9e59699..16d822e 100644 --- a/cgi/templates/banned.html +++ b/cgi/templates/banned.html @@ -58,12 +58,13 @@ <b>#{reason}</b> </li> <?py #endif ?> - <li>Tu ban fue puesto el - <b>#{added}</b> para las siguientes secciones: <b>#{boards_str}.</b></li> + <li>La suspensión fue puesta el <b>#{added}</b> para las siguientes secciones: <b>#{boards_str}</b>.</li> <?py if expire != "": ?> - <li>Se te concederá nuevamente el acceso en la siguiente fecha y hora: - <b>#{expire}</b>.</li> + <li>Se te concederá nuevamente el acceso en la siguiente fecha y hora: <b>#{expire}</b>.</li> + <?py else: ?> + <li>No se te volverá a conceder el acceso ya que la suspensión es permanente.</li> <?py #endif ?> + <li>El rango IP de la suspensión es: <b>#{ipstr}</b> </ul> <hr /> <p>Si crees que tu expulsión fue puesta incorrectamente no dudes en <a @@ -75,4 +76,4 @@ </div> </div> </body> -</html>
\ No newline at end of file +</html> diff --git a/cgi/templates/manage/bans.html b/cgi/templates/manage/bans.html index 81e0f71..96e1ed1 100644 --- a/cgi/templates/manage/bans.html +++ b/cgi/templates/manage/bans.html @@ -4,7 +4,7 @@ <center> <div class="replymode">Bans</div> <?py if mode == 0: ?> -<form action="#{cgi_url}manage/ban/" name="banform" method="post"> +<form action="#{cgi_url}manage/ban/" name="banform" method="get"> <table> <tr> <td class="postblock">Dirección IP</td> @@ -17,7 +17,6 @@ <table class="managertable"> <tr> <th>Dirección IP</th> - <th>Máscara de red</th> <th>Boards</th> <th>Agregado</th> <th>Expira</th> @@ -30,7 +29,6 @@ <?py for ban in bans: ?> <tr> <td>${ban['ip']}</td> - <td>${ban['netmask']}</td> <td>${ban['boards']}</td> <td>${ban['added']}</td> <td>${ban['until']}</td> @@ -49,8 +47,7 @@ <?py elif mode == 1: ?> <form action="#{cgi_url}manage/ban" name="banform" method="post"> <table> - <tr><td class="postblock">IP</td><td><input type="text" name="ip" value="${ip}" size="20" style="width:100%;" /></td></tr> - <tr><td class="postblock">Máscara de red</td><td><input type="text" name="netmask" value="${startvalues['netmask']}" style="width:100%;" /></td></tr> + <tr><td class="postblock">IP o Rango</td><td><input type="text" name="ip" value="${ip}" size="20" style="width:100%;" /></td></tr> <tr> <td class="postblock">Board(s)</td> <td> @@ -89,4 +86,4 @@ <?py #endif ?> </center> <hr /> -<?py include('templates/base_bottom.html') ?>
\ No newline at end of file +<?py include('templates/base_bottom.html') ?> |