Skip to content

Commit

Permalink
Oops, we're not supposed to include supported versions in the archive
Browse files Browse the repository at this point in the history
  • Loading branch information
mhagander committed Aug 17, 2013
1 parent d4fd69a commit bc020e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pgweb/docs/views.py
Expand Up @@ -106,7 +106,7 @@ def manuals(request):
}, NavContext(request, 'docs'))

def manualarchive(request):
versions = Version.objects.filter(beta=False,tree__gt=0).order_by('-tree')
versions = Version.objects.filter(beta=False,supported=False,tree__gt=0).order_by('-tree')
return render_to_response('docs/archive.html', {
'versions': [_VersionPdfWrapper(v) for v in versions],
}, NavContext(request, 'docs'))
Expand Down

0 comments on commit bc020e4

Please sign in to comment.