10000 Merge branch 'master' into release · pythonanywhere/pythondotorg@8816a85 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8816a85

Browse files
committed
Merge branch 'master' into release
2 parents af04a4e + 70ac1f3 commit 8816a85

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

downloads/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,4 +191,4 @@ class ReleaseFile(ContentManageable, NameSlugModel):
191191
class Meta:
192192
verbose_name = 'Release File'
193193
verbose_name_plural = 'Release Files'
194-
ordering = ('-release__is_published', 'release__name', 'os__name')
194+
ordering = ('-release__is_published', 'release__name', 'os__name', 'name')

templates/downloads/release_detail.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ <h1 class="page-title">Files</h1>
3838
<th>Version</th>
3939
<th>Operating System</th>
4040
<th>Description</th>
41-
<th>Date</th>
4241
<th>MD5 Sum</th>
4342
<th>File Size</th>
4443
<th>GPG</th>
@@ -50,7 +49,6 @@ <h1 class="page-title">Files</h1>
5049
<td><a href="{{ f.url }}">{{ f.name }}</a></td>
5150
<td>{{ f.os.name }}</td>
5251
<td>{{ f.description }}</td>
53-
<td>{{ r.release.release_date|date }}</td>
5452
<td>{{ f.md5_sum }}</td>
5553
<td>{{ f.filesize }}</td>
5654
<td>{% if f.gpg_signature_file %}<a href="{{ f.gpg_signature_file }}">SIG</a>{% endif %}</td>

0 commit comments

Comments
 (0)
0