Alma Notification XSL: Lost Loan Notification

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="header.xsl" />
<xsl:include href="senderReceiver.xsl" />
<xsl:include href="footer.xsl" />
<xsl:include href="style.xsl" />
<xsl:template match="/">
<html>
<head>
<xsl:call-template name="generalStyle" />
</head>
<body>
<xsl:attribute name="style">
<xsl:call-template name="bodyStyleCss" /> <!-- style.xsl -->
</xsl:attribute>
<xsl:call-template name="head" /> <!-- header.xsl -->
<xsl:call-template name="senderReceiver" /> <!-- SenderReceiver.xsl -->
<br />

<table cellspacing="0" cellpadding="5" border="0">
<tr>
<td>
<h><b>@@</b></h>
<h><b>@@ @@</b></h>
</td>
</tr>
</table>
<br />
<table cellpadding="5" class="listing">
<xsl:attribute name="style">
<xsl:call-template name="mainTableStyleCss" /> <!-- style.xsl -->
</xsl:attribute>
<xsl:for-each select="notification_data">
<table>
<tr>
<td>
<b>@@: </b> <xsl:value-of select="item_loan/title"/>
<br />
<b>@@: </b><xsl:value-of select="item_loan/description"/>
<br />
<b> @@: </b><xsl:value-of select="item_loan/author"/>
<br />
<b>@@: </b><xsl:value-of select="organization_unit/name"/>
<br />
<b>@@: </b><xsl:value-of select="item_loan/loan_date"/>
<br />
<b>@@: </b><xsl:value-of select="item_loan/due_date"/>
<br />
<b>@@: </b><xsl:value-of select="item_loan/barcode"/>
<br />
<b>@@: </b><xsl:value-of select="phys_item_display/call_number"/>
<br />
<br />
<br />
<b>@@ </b>
</td>
</tr>
</table>
</xsl:for-each>
<table cellpadding="5" class="listing">
<xsl:attribute name="style">
<xsl:call-template name="mainTableStyleCss" /> <!-- style.xsl -->
</xsl:attribute>
<tr>
<th>@@</th>
<th>@@</th>
<th>@@</th>
</tr>
<xsl:for-each select="notification_data/fines_fees_list/user_fines_fees">
<tr>
<td><xsl:value-of select="fine_fee_type_display"/></td>
<td><xsl:value-of select="fine_fee_ammount/sum"/> <xsl:value-of select="fine_fee_ammount/currency"/></td>
<td><xsl:value-of select="ff"/></td>
</tr>
</xsl:for-each>
</table>
<br />
<br />
@@
<br />
@@
<br />
<table>
<tr><td>@@,</td></tr>
<tr><td>@@</td></tr>
</table>
</table>
<br />
<xsl:call-template name="lastFooter" /> <!-- footer.xsl -->
</body>
</html>
</xsl:template>
</xsl:stylesheet>