auto-reload status page after 30 seconds
This commit is contained in:
parent
9f4f2818c5
commit
6e349ad35c
2 changed files with 10 additions and 0 deletions
|
@ -32,5 +32,10 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
window.setTimeout(function() {
|
||||
window.location.reload();
|
||||
}, 10000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -39,5 +39,10 @@
|
|||
</div>
|
||||
% endfor
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
window.setTimeout(function() {
|
||||
window.location.reload();
|
||||
}, 30000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue