I'm trying to add a serial number (1,2,3 ... n) to each row of items listed in the CHECKIN digest email on the latest oldstable.
First I tried to be cocky and attempted to do something like this :
.circdata tr:not(.circheader) {
counter-increment: row-num;
}
.circdata tr:not(.circheader) td:first-child::after {
content: counter(row-num);
text-align: left;
}
Of course even in 2018, GMail web client does not seem to allow that. So I looked at the code in C4/Circulation.pm, Letters.pm, Message.pm and read up the bug reports on adding TT syntax to the notices, but i could not see a way to do that.
If I am missing something obvious or is attempting to do something that is not possible on present codebase, please feel free to hit me over the head with a cluebat ;-)
cheers
indranil