-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBorrowerOverdueEmailLetter.xsl
89 lines (89 loc) · 2.44 KB
/
BorrowerOverdueEmailLetter.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?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="mailReason.xsl"/>
<xsl:include href="footer.xsl"/>
<xsl:include href="style.xsl"/>
<xsl:include href="recordTitle.xsl"/>
<xsl:template match="/">
<html>
<xsl:if test="notification_data/languages/string">
<xsl:attribute name="lang">
<xsl:value-of select="notification_data/languages/string"/>
</xsl:attribute>
</xsl:if>
<head>
<title>
<xsl:value-of select="notification_data/general_data/subject"/>
</title>
<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 -->
<div class="messageArea">
<div class="messageBody">
<xsl:call-template name="toWhomIsConcerned"/>
<!-- mailReason.xsl -->
<table role='presentation' style="padding: 5px;">
<tr>
<td>
@@overdue_message@@
</td>
</tr>
</table>
<table role='presentation' style="padding: 5px;">
<xsl:attribute name="style">
<xsl:call-template name="listStyleCss"/>
</xsl:attribute>
<tr>
<td>
<strong>@@request_id@@: </strong>
<xsl:value-of select="notification_data/request/external_request_id"/>
</td>
</tr>
<tr>
<td>
<strong>@@title@@: </strong>
<xsl:value-of select="notification_data/request/display/title"/>
</td>
</tr>
<tr>
<td>
<strong> @@request_date@@: </strong>
<xsl:value-of select="notification_data/request/create_date"/>
</td>
</tr>
<tr>
<td>
<strong>@@orignal_due_date@@:</strong>
<xsl:value-of select="notification_data/request/due_date"/>
</td>
</tr>
</table>
<br/>
<table role='presentation' style="padding: 5px;">
<tr>
<td>
@@return_message@@
</td>
</tr>
</table>
<table style="padding: 5px;">
<tr>
<td>@@signature@@</td>
</tr>
</table>
<!-- footer.xsl -->
<xsl:call-template name="ILLFooterPeerToPeer"/>
</div>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>