From 3af48542e40fc2c283b2dcbc614c8f014401f867 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 18 Apr 2011 05:31:43 +0900 Subject: [PATCH] include card & fact group in card info --- anki/stats.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/anki/stats.py b/anki/stats.py index 5955dcb52..af0ac292d 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -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 += "" return self.txt