Thanks a lot @chaley!
That's great tip to convert the
complete tetemplatee to TPM. I didn't know that's possible. It's soo much easier!
Basically I went with your TPM solution, I just made a few adjustments to your version to accommodate better my setup. For completeness I list that here:
Code:
program:
if $series then
if $$formatted_series_index == "0" then
dex = ""
else
dex = strcat(" - ",$$formatted_series_index)
fi;
s = strcat("<i>", $series, "</i>", dex, "<br>")
else
s = ''
fi;
if $#version
then
v = strcat("<b>", $#version, "</b>")
else
v = ''
fi;
strcat(s, v)
Again, thanks a lot!