From b3c5a92117164cc66b8475dbfb50fddd56c24c24 Mon Sep 17 00:00:00 2001
From: youngsukim-csusb <youngsu.kim@csusb.edu>
Date: Mon, 20 Jun 2022 17:04:01 -0700
Subject: [PATCH] test spawn

---
 page.html  | 5 +++++
 spawn.html | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)
 create mode 100644 page.html

diff --git a/page.html b/page.html
new file mode 100644
index 0000000..c326b8c
--- /dev/null
+++ b/page.html
@@ -0,0 +1,5 @@
+{% extends "templates/page.html" %}
+
+{% block main %}
+{% set n_gpus = 1 %}
+{% endblock %}
\ No newline at end of file
diff --git a/spawn.html b/spawn.html
index 5ab101d..80b6a05 100644
--- a/spawn.html
+++ b/spawn.html
@@ -1,7 +1,5 @@
 {% extends "templates/spawn.html" %}
 
-{% set n_gpus = 1 %}
-
 {% block heading %}
 <label for="gpus">GPUs</label>
 <input class="form-control input-lg" type="range" name="gpus" value="{{ n_gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>
-- 
GitLab