Fixed calls to the benchmarks array on the test view page
This commit is contained in:
parent
4fab94b271
commit
c81d6f0e32
@ -8,7 +8,7 @@
|
||||
<h1>{{ test.title }}</h1>
|
||||
<p>{{ test.description }}</p>
|
||||
<ul>
|
||||
{% for b in test.benchmarks() %}
|
||||
{% for b in test.benchmarks %}
|
||||
<li>{{ b.name }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
@ -23,7 +23,7 @@
|
||||
<div class="row">
|
||||
<div class="four columns">
|
||||
<select class="u-full-width:" name="result_benchmark">
|
||||
{% for b in test.benchmarks() %}
|
||||
{% for b in test.benchmarks %}
|
||||
<option value="{{ b.id }}">{{ b.name }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
Loading…
Reference in New Issue
Block a user