mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
_layouts/package.html: show sizes with suffixes :)
This commit is contained in:
parent
ca1a1ba2a1
commit
e58eb5de81
1 changed files with 5 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ layout: default
|
|||
<table>
|
||||
<tr>
|
||||
<th>Version</th>
|
||||
<th>Size (Bytes)</th>
|
||||
<th>Size</th>
|
||||
<th>sha256</th>
|
||||
</tr>
|
||||
{% for version in page.Versions %}
|
||||
|
|
@ -33,7 +33,10 @@ layout: default
|
|||
{{ version[0] }}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{ version[1].Size }}</td>
|
||||
<td>
|
||||
{% assign tmpSize = version[1].Size %}
|
||||
{% include size.html input=tmpSize %}
|
||||
</td>
|
||||
<td>{{ version[1].SHA256 }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue