diff --git a/anki/stats.py b/anki/stats.py index 6a117360e..d8fcb0949 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -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)