Updated Test and Result views/routes to use BenchmarkProfile
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
2026-04-15 13:58:44 -04:00
parent 3dbc11d294
commit d526fa30f4
7 changed files with 17 additions and 13 deletions

View File

@@ -28,8 +28,10 @@
<label for="test_benchmarks">Benchmarks</label>
<select id="test_benchmarks" class="form-select" name="test_benchmarks[]" multiple>
<% for b in benchmarks %>
<option value="<%= b.id %>"><%= b.name %></option>
<% for bp in b.benchmark_profiles %>
<option value="<%= bp.id %>"><%= bp.display_name %></option>
<% end %>
<% end %>
</select>
</div>