Skip to content

Commit 39a650f

Browse files
authored
Merge branch 'internetstandards:main' into main
2 parents dcace6f + 89692de commit 39a650f

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ _Compared to the latest 1.10 release._
2020

2121
- ...
2222

23+
## 1.10.3
24+
25+
- Added [missing User-Agent](https://github.com/internetstandards/Internet.nl/issues/1048) to 0-RTT HTTP requests
26+
2327
## 1.10.2
2428

2529
- Updated unbound to fix an issue where

interface/templates/statistics.html

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,25 @@ <h3>Completed tests</h2>
1818
</tr>
1919
</thead>
2020
<tbody>
21-
{% for row in table_content %}
22-
<tr>
23-
{% for cell in row %}
24-
<td>{{cell}}</td>
25-
{% endfor %}
26-
</tr>
21+
{% for row in table_content %}
22+
<tr>
23+
{% for cell in row %}
24+
<td>{{cell}}</td>
2725
{% endfor %}
28-
<tr>
29-
{% for cell in per_test %}
30-
{% if forloop.first %}
31-
<th>{{cell}}</th>
32-
{% else %}
33-
<td>{{cell}}</td>
34-
{% endif %}
35-
{% endfor %}
36-
</tr>
26+
</tr>
27+
{% endfor %}
3728
</tbody>
29+
<tfoot>
30+
<tr>
31+
{% for cell in per_test %}
32+
{% if forloop.first %}
33+
<th>{{cell}}</th>
34+
{% else %}
35+
<td>{{cell}}</td>
36+
{% endif %}
37+
{% endfor %}
38+
</tr>
39+
</foot>
3840
</table>
3941
</section>
4042
</article>

0 commit comments

Comments
 (0)