mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 09:16:38 -04:00
don't display the "reviews over the lifetime of the deck"
This commit is contained in:
parent
84f953c754
commit
dabe170bed
1 changed files with 2 additions and 1 deletions
|
@ -86,7 +86,8 @@ select day,
|
||||||
matureEase0+matureEase1+matureEase2+matureEase3+matureEase4 as matureReps,
|
matureEase0+matureEase1+matureEase2+matureEase3+matureEase4 as matureReps,
|
||||||
reps-(newEase0+newEase1+newEase2+newEase3+newEase4) as combinedYoungReps,
|
reps-(newEase0+newEase1+newEase2+newEase3+newEase4) as combinedYoungReps,
|
||||||
reps as combinedNewReps
|
reps as combinedNewReps
|
||||||
from stats""")
|
from stats
|
||||||
|
where type = 1""")
|
||||||
|
|
||||||
todaydt = datetime.datetime(*list(time.localtime(time.time())[:3]))
|
todaydt = datetime.datetime(*list(time.localtime(time.time())[:3]))
|
||||||
for dest, source in [("dayRepsNew", "combinedNewReps"), ("dayRepsYoung", "combinedYoungReps"), ("dayRepsMature", "matureReps")]:
|
for dest, source in [("dayRepsNew", "combinedNewReps"), ("dayRepsYoung", "combinedYoungReps"), ("dayRepsMature", "matureReps")]:
|
||||||
|
|
Loading…
Reference in a new issue