Fix template resources values
This commit is contained in:
parent
2678801d93
commit
565364404f
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@
|
|||
{%- for cpu in cpu_available -%}
|
||||
<label class="radio-inline">
|
||||
<input type="radio" name="cpu"
|
||||
value="cpu-{{loop.index0}}"
|
||||
value="{{loop.index0}}"
|
||||
data-max-duration="{{cpu.max_duration}}"
|
||||
{%- if loop.first -%}checked{%- endif -%}
|
||||
> {{ cpu.description }}
|
||||
|
@ -35,7 +35,7 @@
|
|||
{%- for ram in ram_available -%}
|
||||
<label class="radio-inline">
|
||||
<input type="radio" name="ram"
|
||||
value="ram-{{loop.index0}}"
|
||||
value="{{loop.index0}}"
|
||||
data-max-duration="{{ram.max_duration}}"
|
||||
{%- if loop.first -%}checked{%- endif -%}
|
||||
> {{ ram.description }} GB
|
||||
|
@ -49,7 +49,7 @@
|
|||
{%- for gpu in gpu_available -%}
|
||||
<label class="radio-inline">
|
||||
<input type="radio" name="gpu"
|
||||
value="gpu-{{loop.index0}}"
|
||||
value="{{loop.index0}}"
|
||||
data-max-duration="{{gpu.max_duration}}"
|
||||
{%- if loop.first -%}checked{%- endif -%}
|
||||
> {{ gpu.description }}
|
||||
|
|
Loading…
Add table
Reference in a new issue