Newer
Older
<style>
input[type="range"] {
display: inline;
width: 40%;
}
output {
display: inline;
width: 20%;
}
</style>
<p>   </p>
<div class="text-center" style="width: 100%; text-align: center">
<p style="font-size: 150%; text-align: left; TEXT-DECORATION: underline">Advanced Options </p>
</summary>
<p>Click the slider to adjust values; once clicked arrow keys can be used</p>
<div style="margin-right: 20%; margin-left: 20%;">
<p>
<input type="range" name="gpus" value="0" min="0" max="6" oninput="this.nextElementSibling.value = this.value"/>
<output> default 0 </output>
</p>
<p>
<label for="gputype">GPU type</label>
<br/>
<select name="gputype" style="display: inline">
<option value="" selected="selected">Any</option>
<option value="NVIDIA-GeForce-GTX-1080">NVIDIA-GeForce-GTX-1080-8GB</option>
<option value="NVIDIA-GeForce-GTX-1080-Ti">NVIDIA-GeForce-GTX-1080-Ti-12GB</option>
<option value="NVIDIA-GeForce-RTX-2080-Ti">NVIDIA-GeForce-RTX-2080-Ti-12GB</option>
<option value="NVIDIA-GeForce-RTX-3090">NVIDIA-GeForce-RTX-3090-24GB</option>
<option value="NVIDIA-A100-80GB-PCIe-MIG-1g.10gb">NVIDIA-A100-80GB-PCIe-MIG-1g.10gb</option>
<option value="Quadro-RTX-6000">Quadro-RTX-6000-24GB</option>
<option value="NVIDIA-RTX-A5000">Quadro-RTX-5000-24GB</option>
<option value="NVIDIA-RTX-A6000">NVIDIA RTX A6000-48GB</option>
<option value="NVIDIA-A10">NVIDIA-A10-48GB</option>
<option value="NVIDIA-A100-SXM4-80GB">NVIDIA-A100-SXM4-80GB</option>
</select>
</p>
<p>   </p>
<p>
<label for="cores">Cores </label> max 128
<input type="range" name="cores" value="4" min="4" max="128" step="4" oninput="this.nextElementSibling.value = this.value"/>
</p>
<p>   </p>
<p>
<label for="ram">RAM, GB </label> max 256
<input type="range" name="ram" value="16" min="8" max="512" step="16" oninput="this.nextElementSibling.value = this.value"/>
</p>
<!-- <label for="cephfscourse">Test course shared PVC </label>
<input style="display: inline" type="checkbox" name="cephfscourse"> -->
<input style="display: inline" type="checkbox" name="shared"/>
<br/>
</div>
</details>
</div>
<br/>
<div class='form-group' id='kubespawner-profiles-list'>
<label style="font-size: 150%; font-weight: normal;">Image</label>
{% for profile in profile_list %}
<label style="font-weight: normal;" for='profile-item-{{ loop.index0 }}' class='form-control input-group'>
<div class='col-md-1'>
<input type='radio' name='profile' id='profile-item-{{ loop.index0 }}' value='{{ loop.index0 }}' {% if profile.default %}checked{% endif %} />
</div>
<div class='col-md-11'>
<strong>{{ profile.display_name }}</strong>
{% if profile.description %}
<p>{{ profile.description }}</p>
{% endif %}
</div>
</label>
{% endfor %}