We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a360495 commit 56b6c2aCopy full SHA for 56b6c2a
src/worker/jobs/index_version_downloads_archive/index.html.j2
@@ -22,11 +22,17 @@
22
</p>
23
24
<table>
25
+ <thead>
26
+ <tr>
27
+ <th>File</th>
28
+ <th style="padding-left: 1em">Size</th>
29
+ </tr>
30
+ </thead>
31
<tbody>
32
{% for file in files %}
33
<tr>
34
<td><a href="{{ file.name }}">{{ file.name }}</a></td>
- <td>{{ file.size }}</td>
35
+ <td style="padding-left: 1em; text-align: right">{{ file.size }}</td>
36
</tr>
37
{% endfor %}
38
</tbody>
0 commit comments