diff --git a/vcl/templates/lab/sandbox.html b/vcl/templates/lab/sandbox.html
index 80142f8..85684ae 100644
--- a/vcl/templates/lab/sandbox.html
+++ b/vcl/templates/lab/sandbox.html
@@ -81,25 +81,33 @@
Manage existing sandbox machines
{{ value }}
-->
-
+
{% for key2,value2 in value.items %}
-
{% if key2 == 'public_dns' and value2 > '' %}
-
- {% if value.machine_status == 'initializing' %}
- Initializing Machine
- (15-20 mins)
-
-
-
- {% else %}
- Download RDP File
- Machine Address:{{ value2 }}
- {% endif %}
+ var divInitializingMachine =
+ '';
+ var divInitializingComplete =
+ ';
+ if ("{{ value.machine_status }}".includes("initializing")){
+ var id_value = document.getElementById("{{ value.public_dns }}");
+ $(id_value).append(divInitializingMachine);
+ setTimeout('delayer()', 150000);
+ } else {
+ var id_value = document.getElementById("{{ value.public_dns }}");
+ $(id_value).append(divInitializingComplete);
+ }
+
+
{% else %}