include average answer time for today
This commit is contained in:
parent
3d71d6873e
commit
6d7dd08e1e
@ -166,8 +166,11 @@ from revlog where id > ? """+lim, (self.col.sched.dayCutoff-86400)*1000)
|
||||
def bold(s):
|
||||
return "<b>"+str(s)+"</b>"
|
||||
msgp1 = ngettext("<!--studied-->%d card", "<!--studied-->%d cards", cards) % cards
|
||||
b += _("Studied %(a)s %(b)s today.") % dict(
|
||||
a=bold(msgp1), b=bold(fmtTimeSpan(thetime, unit=1, inTime=True)))
|
||||
if cards:
|
||||
b += _("Studied %(a)s %(b)s today (%(secs).1fs/card)") % dict(
|
||||
a=bold(msgp1), b=bold(fmtTimeSpan(thetime, unit=1, inTime=True)),
|
||||
secs=thetime/cards
|
||||
)
|
||||
# again/pass count
|
||||
b += "<br>" + _("Again count: %s") % bold(failed)
|
||||
if cards:
|
||||
@ -179,14 +182,16 @@ from revlog where id > ? """+lim, (self.col.sched.dayCutoff-86400)*1000)
|
||||
% dict(a=bold(lrn), b=bold(rev), c=bold(relrn), d=bold(filt)))
|
||||
# mature today
|
||||
mcnt, msum = self.col.db.first("""
|
||||
select count(), sum(case when ease = 1 then 0 else 1 end) from revlog
|
||||
where lastIvl >= 21 and id > ?"""+lim, (self.col.sched.dayCutoff-86400)*1000)
|
||||
select count(), sum(case when ease = 1 then 0 else 1 end) from revlog
|
||||
where lastIvl >= 21 and id > ?"""+lim, (self.col.sched.dayCutoff-86400)*1000)
|
||||
b += "<br>"
|
||||
if mcnt:
|
||||
b += _("Correct answers on mature cards: %(a)d/%(b)d (%(c).1f%%)") % dict(
|
||||
a=msum, b=mcnt, c=(msum / float(mcnt) * 100))
|
||||
else:
|
||||
b += _("No mature cards were studied today.")
|
||||
else:
|
||||
b += _("No cards have been studied today.")
|
||||
return b
|
||||
|
||||
# Due and cumulative due
|
||||
|
Loading…
Reference in New Issue
Block a user