mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
include card ordinal in clayout
This commit is contained in:
parent
f92bb55c25
commit
b870abd2d4
1 changed files with 2 additions and 1 deletions
|
@ -126,7 +126,8 @@ class CardLayout(QDialog):
|
|||
self.redrawing = False
|
||||
|
||||
def _summarizedName(self, tmpl):
|
||||
return "{}: {} -> {}".format(
|
||||
return "{}: {}: {} -> {}".format(
|
||||
tmpl["ord"] + 1,
|
||||
tmpl["name"],
|
||||
self._fieldsOnTemplate(tmpl["qfmt"]),
|
||||
self._fieldsOnTemplate(tmpl["afmt"]),
|
||||
|
|
Loading…
Reference in a new issue