Skip to content
Snippets Groups Projects
Commit c6ec98c3 authored by Youngsu Kim's avatar Youngsu Kim
Browse files

test spawn

parent 5d3c57ab
No related branches found
No related tags found
1 merge request!2Update login, page, spawn_pending
{% extends "templates/spawn.html" %}
{% set gpus = 1 %}
{% set n_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>{{ gpus }}</output>
<input class="form-control input-lg" type="range" name="gpus" value="{{ n_gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>
<output>{{ n_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"/>
<output>1</output>
<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>
<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"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment