mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
add review count back
This commit is contained in:
parent
347bfbbff5
commit
49c0a5dd82
1 changed files with 1 additions and 0 deletions
|
@ -39,6 +39,7 @@ class CardStats(object):
|
|||
self.addLine(_("Due"), next)
|
||||
self.addLine(_("Interval"), fmt(c.ivl * 86400))
|
||||
self.addLine(_("Ease"), "%d%%" % (c.factor/10.0))
|
||||
self.addLine(_("Reviews"), "%d" % c.reps)
|
||||
(cnt, total) = self.col.db.first(
|
||||
"select count(), sum(time)/1000 from revlog where cid = :id",
|
||||
id=c.id)
|
||||
|
|
Loading…
Reference in a new issue