From d64f0069977106843944cecfd442b4a7c016b88e Mon Sep 17 00:00:00 2001
From: youngsuKim-CSUSB <81013158+youngsuKim-CSUSB@users.noreply.github.com>
Date: Mon, 20 Jun 2022 22:23:51 -0700
Subject: [PATCH] test htmls

---
 page.html  |  1 +
 spawn.html | 12 +++---------
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/page.html b/page.html
index 72ce48f..491dc46 100644
--- a/page.html
+++ b/page.html
@@ -2,6 +2,7 @@
 
 {% set extra_resources = {'n_gpus' : 3} %}
 extra_resources.n_gpus.update(2)
+{% do extra_resources['n_cpus']=4 %} 
 
 {% block footer %}
 CSUSB ITS/ATI {{ user.name }}
diff --git a/spawn.html b/spawn.html
index 3ff36b4..cb24c1e 100644
--- a/spawn.html
+++ b/spawn.html
@@ -6,20 +6,14 @@
 
 {% block heading %}
 <p>Number of GPUs: {{ extra_resources.n_gpus }}</p>
-<p>Username {{ username }} </p>
-<p>Username {{ user.name }} </p>
-<p>
-    {% for item in user %}
-      <li>{{ item }}</li>
-    {% endfor %}
-</p>
+<p>Username {{ user.scope }} </p>
 <label for="gpus">GPUs</label>
 <input class="form-control input-lg" type="range" name="gpus" value="{{ extra_resources.n_gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>
 <output>{{ extra_resources.n_gpus }}</output>  
 <br/>
 <label for="cores">CPUS</label>
-<input class="form-control input-lg" type="range" name="cores" value="2" min="0" max="96" oninput="this.nextElementSibling.value = this.value"/>
-<output>2</output>  
+<input class="form-control input-lg" type="range" name="cores" value="{{ extra_resources.n_cpus }}" min="0" max="96" oninput="this.nextElementSibling.value = this.value"/>
+<output>{{ extra_resources.n_cpus }}</output>  
 <br/>
 <label for="ram">RAM, GB</label>
 <input class="form-control input-lg" type="range" name="ram" value="8" min="1" max="512" oninput="this.nextElementSibling.value = this.value"/>
-- 
GitLab