aboutsummaryrefslogtreecommitdiff
path: root/chishop/templates/djangopypi/pypi_show_links.html
diff options
context:
space:
mode:
Diffstat (limited to 'chishop/templates/djangopypi/pypi_show_links.html')
-rw-r--r--chishop/templates/djangopypi/pypi_show_links.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/chishop/templates/djangopypi/pypi_show_links.html b/chishop/templates/djangopypi/pypi_show_links.html
index 6e46635..13fc2e5 100644
--- a/chishop/templates/djangopypi/pypi_show_links.html
+++ b/chishop/templates/djangopypi/pypi_show_links.html
@@ -8,7 +8,7 @@
8{{ project.description|saferst }} 8{{ project.description|saferst }}
9 9
10<br/> 10<br/>
11<table><thead><th>Filename</th><th>Platform</th><th>Type</th><th>Version</th><th>Uploaded On</th><th>Size</th></thead> 11<table><thead><th>Filename</th><th>Platform</th><th>Type</th><th>Version</th><th>Uploaded On</th><th>Size</th><th>Channel</th></thead>
12<tbody> 12<tbody>
13 {% for release in releases %} 13 {% for release in releases %}
14 <tr> 14 <tr>
@@ -18,6 +18,7 @@
18 <td>{{ release.version }}</td> 18 <td>{{ release.version }}</td>
19 <td>{{ release.upload_time }}</td> 19 <td>{{ release.upload_time }}</td>
20 <td>{{ release.distribution.size|filesizeformat }}</td> 20 <td>{{ release.distribution.size|filesizeformat }}</td>
21 <td>{{ release.channel }}</td>
21 </tr> 22 </tr>
22 {% endfor %} 23 {% endfor %}
23</tbody></table> 24</tbody></table>