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 9e22f88 commit 5d40a53Copy full SHA for 5d40a53
1 file changed
templates/downloads/release_detail.html
@@ -72,6 +72,7 @@ <h3>{{ f.os.name }}</h3>
72
<th>Operating System</th>
73
<th>Description</th>
74
<th>MD5 Sum</th>
75
+ <th>SHA256 Sum</th>
76
<th>File Size</th>
77
{% if release_files|has_sigstore_materials %}
78
<th colspan="2"><a href="https://www.python.org/download/sigstore/">Sigstore</a></th>
@@ -91,6 +92,7 @@ <h3>{{ f.os.name }}</h3>
91
92
<td>{{ f.os.name }}</td>
93
<td>{{ f.description }}</td>
94
<td>{{ f.md5_sum }}</td>
95
+ <td>{{ f.sha256_sum|default:"n/a" }}</td>
96
<td>{{ f.filesize|filesizeformat }}</td>
97
98
{% if f.sigstore_bundle_file %}
0 commit comments