mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -05:00
fix spacing in card stats
This commit is contained in:
parent
91e90d8092
commit
9c226d5b4f
1 changed files with 2 additions and 2 deletions
|
|
@ -287,8 +287,8 @@ class CardStats(object):
|
||||||
c.averageTime)
|
c.averageTime)
|
||||||
self.addLine(_("Total Time"), _("%0.1f seconds") %
|
self.addLine(_("Total Time"), _("%0.1f seconds") %
|
||||||
c.reviewTime)
|
c.reviewTime)
|
||||||
self.addLine(_("Model Tags") + " "*5, c.fact.model.tags)
|
self.addLine(_("Model Tags"), c.fact.model.tags)
|
||||||
self.addLine(_("Card Template"), c.cardModel.name)
|
self.addLine(_("Card Template") + " "*5, c.cardModel.name)
|
||||||
self.txt += "</table>"
|
self.txt += "</table>"
|
||||||
return self.txt
|
return self.txt
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue