I have a question about editing templates.
On all detail list pages of a master detail relationship, there is a piece of the master table shown on top of the screen. This comes from masterlist.htm and the heading for the master table info is:
<b>##@TABLE.strCaption h##: [{$showKeys}]</b>
Now, what I want to achieve, is for this heading to be clickable, and to take you back to the view page of the master record.
In effect, I need to change this line in the template to be something like:
<a href="{$mastertable}_view.php?editid1={$masterkey1}"><b>##@TABLE.strCaption h##: [{$showKeys}]</b></a>
However, this doesn't work as {$mastertable} and {$masterkey1} are not defined.
How can I achieve this?
Thanks in advance.
-Andreas