added Voicenumber form and save

This commit is contained in:
Frank Schubert
2022-01-18 22:23:01 +01:00
parent f2a33a02ef
commit 39d07f948e
7 changed files with 440 additions and 1 deletions
+10
View File
@@ -192,5 +192,15 @@
$('#block-' + id).addClass("table-info");
}
}
var block;
var hash = window.location.hash.substr(1);
var match = hash.match(/block=(\d+)/);
if(match && match[1]) {
block = match[1]
toggleBlock(block);
}
</script>
<?php include(realpath(dirname(__FILE__)."/../")."/footer.php"); ?>