Fixed variable capitalization in create test view
This commit is contained in:
parent
86bf4d37f0
commit
8412163370
@ -9,7 +9,7 @@
|
|||||||
<label for="test_hardware">
|
<label for="test_hardware">
|
||||||
Hardware Component:
|
Hardware Component:
|
||||||
<select id="test_hardware" class="u-full-width" name="test_hardware">
|
<select id="test_hardware" class="u-full-width" name="test_hardware">
|
||||||
{{ range $hw := .Hardware }}
|
{{ range $hw := .hardware }}
|
||||||
<option value="{{ $hw.ID }}">{{ $hw.Name }}</option>
|
<option value="{{ $hw.ID }}">{{ $hw.Name }}</option>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</select>
|
</select>
|
||||||
@ -29,7 +29,7 @@
|
|||||||
<label for="test_benchmarks">
|
<label for="test_benchmarks">
|
||||||
Benchmarks to Test:
|
Benchmarks to Test:
|
||||||
<select id="test_benchmarks" class="u-full-width" name="test_benchmarks" multiple>
|
<select id="test_benchmarks" class="u-full-width" name="test_benchmarks" multiple>
|
||||||
{{ range $bm := .Benchmarks }}
|
{{ range $bm := .benchmarks }}
|
||||||
<option value="{{ $bm.ID }}">{{ $bm.Name }}</option>
|
<option value="{{ $bm.ID }}">{{ $bm.Name }}</option>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</select>
|
</select>
|
||||||
|
Loading…
Reference in New Issue
Block a user