auto-reload status page after 30 seconds

This commit is contained in:
Franzi 2023-05-21 11:24:58 +02:00
parent 9f4f2818c5
commit 6e349ad35c
Signed by untrusted user: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 10 additions and 0 deletions

View file

@ -32,5 +32,10 @@
</div>
</div>
</div>
<script type="text/javascript">
window.setTimeout(function() {
window.location.reload();
}, 10000);
</script>
</body>
</html>

View file

@ -39,5 +39,10 @@
</div>
% endfor
</div>
<script type="text/javascript">
window.setTimeout(function() {
window.location.reload();
}, 30000);
</script>
</body>
</html>