switch to new python version && minor bugs fixed

This commit is contained in:
te5154c
2024-02-26 23:52:31 +03:00
parent e492c5f6ec
commit a06827b1d2
6 changed files with 20 additions and 29 deletions
+4 -4
View File
@@ -34,11 +34,11 @@
{% block javascript_code %}
<script type="text/javascript">
$(".fox_submit").click(function() {
const INPUT_CID = 0 + $(".fox_input").val();
const INPUT_CID = $(".fox_input").val();
if ((0 + INPUT_CID) < 100000) {
$(".fox_message").text("CID should be equal or more than 100000");
return;
if (INPUT_CID < 100000) {
$(".fox_message").text("CID should be equal or more than 100000");
return;
}
fetch("/api/request?request_string=members/" + INPUT_CID, {})