Merge pull request #23932 from webmaster-cses-org-uk/patch-4
[civicrm-core.git] / xml / templates / message_templates / uf_notify_html.tpl
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
5 <title></title>
6 </head>
7 <body>
8
9 {capture assign=headerStyle}colspan="2" style="text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;"{/capture}
10 {capture assign=labelStyle }style="padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;"{/capture}
11 {capture assign=valueStyle }style="padding: 4px; border-bottom: 1px solid #999;"{/capture}
12
13 <table id="crm-event_receipt" style="font-family: Arial, Verdana, sans-serif; text-align: left; width:100%; max-width:700px; padding:0; margin:0; border:0px;">
14
15 <!-- BEGIN HEADER -->
16 <!-- You can add table row(s) here with logo or other header elements -->
17 <!-- END HEADER -->
18
19 <!-- BEGIN CONTENT -->
20
21 <tr>
22 <td>
23 <table style="border: 1px solid #999; margin: 1em 0em 1em; border-collapse: collapse; width:100%;">
24 <tr>
25 <td {$labelStyle}>
26 {ts}Submitted For{/ts}
27 </td>
28 <td {$valueStyle}>
29 {$displayName}
30 </td>
31 </tr>
32 <tr>
33 <td {$labelStyle}>
34 {ts}Date{/ts}
35 </td>
36 <td {$valueStyle}>
37 {$currentDate}
38 </td>
39 </tr>
40 <tr>
41 <td {$labelStyle}>
42 {ts}Contact Summary{/ts}
43 </td>
44 <td {$valueStyle}>
45 {$contactLink}
46 </td>
47 </tr>
48
49 <tr>
50 <th {$headerStyle}>
51 {$grouptitle}
52 </th>
53 </tr>
54
55 {foreach from=$values item=value key=valueName}
56 <tr>
57 <td {$labelStyle}>
58 {$valueName}
59 </td>
60 <td {$valueStyle}>
61 {$value}
62 </td>
63 </tr>
64 {/foreach}
65 </table>
66 </td>
67 </tr>
68
69 </table>
70
71 </body>
72 </html>