Skip to content

Commit 56b6c2a

Browse files
LawnGnomeTurbo87
authored andcommitted
index_version_downloads_archive: add table headings
I have no idea why I didn't do this to start with.
1 parent a360495 commit 56b6c2a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/worker/jobs/index_version_downloads_archive/index.html.j2

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,17 @@
2222
</p>
2323

2424
<table>
25+
<thead>
26+
<tr>
27+
<th>File</th>
28+
<th style="padding-left: 1em">Size</th>
29+
</tr>
30+
</thead>
2531
<tbody>
2632
{% for file in files %}
2733
<tr>
2834
<td><a href="{{ file.name }}">{{ file.name }}</a></td>
29-
<td>{{ file.size }}</td>
35+
<td style="padding-left: 1em; text-align: right">{{ file.size }}</td>
3036
</tr>
3137
{% endfor %}
3238
</tbody>

0 commit comments

Comments
 (0)