blob: 61aa9af34831cae38629bb125e8fae0c0c3f43d1 (
plain)
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
|
<h2>Customer Details</h2>
<table>
<tr>
<th>Name</th>
<td>[% name %]</td>
</tr>
<tr>
<th>Email</th>
<td>[% email OR 'None provided' %]</td>
</tr>
<tr>
<th>Phone</th>
<td>[% phone OR 'None provided' %]</td>
</tr>
</table>
<h2>Enquiry Details</h2>
<table>
<tr>
<th>Date & Time logged</th>
<td>[% confirmed %]</td>
</tr>
<tr>
<th>Report type</th>
<td>[% report.get_extra_field_value('FaultType') %]</td>
</tr>
<tr>
<th>5 or more lights affected</th>
<td>[% report.get_extra_field_value('5Lights') %]</td>
</tr>
<tr>
<th>Unit Number</th>
<td>[% report.get_extra_field_value('unitid') %]</td>
</tr>
<tr>
<th>Title</th>
<td>[% title %]</td>
</tr>
<tr>
<th>Description</th>
<td>[% detail %]</td>
</tr>
<tr>
<th>URL</th>
<td>[% url %]</td>
</tr>
</table>
<h2>Location Details</h2>
<table>
<tr>
<th>Unit description and location</th>
<td>[% report.get_extra_field_value('asset_details') %]</td>
</tr>
<tr>
<th>Easting/Northing</th>
<td>[% easting %] [% northing %]</td>
</tr>
<tr>
<th>Latitude</th>
<td>[% latitude %]</td>
</tr>
<tr>
<th>Longitude</th>
<td>[% longitude %]</td>
</tr>
<tr>
<th></th>
<td>[% closest_address %]</td>
</tr>
</table>
<strong>NB:</strong> Replies to this email will go to the user who submitted the problem.
|