Don't show technical reports in main papers list

This commit is contained in:
str4d
2014-03-06 11:40:40 +00:00
parent fd90f5982f
commit 8dfc16996b
3 changed files with 6 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ def papers_list(tag='', choice='date'):
if tag:
rbib = [ b for b in rbib.entries if tag in b.get('www_tags', '').split() ]
else:
rbib = rbib.entries
rbib = [ b for b in rbib.entries if 'tech-report' not in b.get('www_tags', '').split() ]
if choice == 'topic':
sectionType = 'Topics'