mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
only show interval if review card
This commit is contained in:
parent
20c96d50d6
commit
31cabb6d3f
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ class CardStats(object):
|
|||
else:
|
||||
next = self.date(next)
|
||||
self.addLine(_("Due"), next)
|
||||
self.addLine(_("Interval"), fmt(c.ivl * 86400))
|
||||
if c.queue == 2:
|
||||
self.addLine(_("Interval"), fmt(c.ivl * 86400))
|
||||
self.addLine(_("Ease"), "%d%%" % (c.factor/10.0))
|
||||
self.addLine(_("Reviews"), "%d" % c.reps)
|
||||
self.addLine(_("Lapses"), "%d" % c.lapses)
|
||||
|
|
Loading…
Reference in a new issue