mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04:00
show # of facts in deck stats
This commit is contained in:
parent
bf77ed1db7
commit
ea89f1d587
1 changed files with 2 additions and 1 deletions
|
@ -325,7 +325,8 @@ class DeckStats(object):
|
|||
(stats["new"], stats["newP"]) = (new, newP)
|
||||
(stats["old"], stats["oldP"]) = (old, oldP)
|
||||
(stats["young"], stats["youngP"]) = (young, youngP)
|
||||
html += _("Total number of cards: <b>%d</b><br><br>") % total
|
||||
html += _("Total number of cards: <b>%d</b><br>") % total
|
||||
html += _("Total number of facts: <b>%d</b><br><br>") % d.factCount
|
||||
|
||||
html += _("<b>Card counts</b><br>")
|
||||
html += _("Mature cards: <b>%(old)d</b> "
|
||||
|
|
Loading…
Reference in a new issue