mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
include card & fact group in card info
This commit is contained in:
parent
003737c03f
commit
3af48542e4
1 changed files with 2 additions and 0 deletions
|
@ -50,6 +50,8 @@ class CardStats(object):
|
|||
self.addLine(_("Total Time"), fmt(total, point=2))
|
||||
self.addLine(_("Model"), c.model().name)
|
||||
self.addLine(_("Template") + " "*5, c.template()['name'])
|
||||
self.addLine(_("Card Group"), self.deck.groupName(c.gid))
|
||||
self.addLine(_("Fact Group"), self.deck.groupName(c.fact().gid))
|
||||
self.txt += "</table>"
|
||||
return self.txt
|
||||
|
||||
|
|
Loading…
Reference in a new issue