split model & card model tags

This commit is contained in:
Damien Elmes 2008-12-09 02:29:08 +09:00
parent 78a15ab652
commit b956eff6b5

View file

@ -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(_("Inherited Tags") + " "*3, canonifyTags( self.addLine(_("Model Tags") + " "*5, c.fact.model.tags)
c.fact.model.tags + "," + c.cardModel.name)) self.addLine(_("Card Model"), c.cardModel.name)
self.txt += "</table>" self.txt += "</table>"
return self.txt return self.txt