Display 'Others' when max displayed reached

This commit is contained in:
2014-12-17 21:27:31 +01:00
parent f82e26e3bc
commit a74a6b8469
4 changed files with 37 additions and 0 deletions

View File

@@ -56,6 +56,12 @@ class IWLADisplayTopDownloads(IPlugin):
for (uri, entrance) in new_list:
table.appendRow([generateHTMLLink(uri), entrance])
total_entrance[1] += entrance
if self.max_downloads:
others = 0
for (uri, entrance) in top_downloads[self.max_downloads:]:
others += entrance
table.appendRow([self.iwla._(u'Others'), others])
table.setCellCSSClass(table.getNbRows()-1, 0, 'iwla_others')
page.appendBlock(table)
display.addPage(page)