aboutsummaryrefslogtreecommitdiff
path: root/chishop/templates/djangopypi/pypi_show_links.html
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-05-27 01:14:08 -0400
committerMike Crute <mcrute@gmail.com>2010-05-27 01:14:08 -0400
commit5a68ee32fe6ec7a381a16245f85fde210500dfd7 (patch)
tree8bdac814a7ff66f0c3aa297a6d3c1f3df191d4db /chishop/templates/djangopypi/pypi_show_links.html
parent93481083e6fa15490584e61a3f6a5638024f9b31 (diff)
downloadchishop-5a68ee32fe6ec7a381a16245f85fde210500dfd7.tar.bz2
chishop-5a68ee32fe6ec7a381a16245f85fde210500dfd7.tar.xz
chishop-5a68ee32fe6ec7a381a16245f85fde210500dfd7.zip
Adding channel support
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>