From 5d3c57ab2fb15e9272bd57b9985e4d92fd280e04 Mon Sep 17 00:00:00 2001
From: youngsukim-csusb <youngsu.kim@csusb.edu>
Date: Mon, 20 Jun 2022 16:44:48 -0700
Subject: [PATCH] test spawn

---
 spawn.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spawn.html b/spawn.html
index cac377d..3f127c1 100644
--- a/spawn.html
+++ b/spawn.html
@@ -1,11 +1,11 @@
 {% extends "templates/spawn.html" %}
 
-{% set gpus = 0 %}
+{% set gpus = 1 %}
 
 {% block heading %}
 <label for="gpus">GPUs</label>
 <input class="form-control input-lg" type="range" name="gpus" value="{{ gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>
-<output>0</output>  
+<output>{{ gpus }}</output>  
 <br/>
 <label for="cores">CPUS</label>
 <input class="form-control input-lg" type="range" name="cores" value="1" min="0" max="96" oninput="this.nextElementSibling.value = this.value"/>
-- 
GitLab