-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtnt_tracking.html
81 lines (80 loc) · 2.46 KB
/
tnt_tracking.html
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
<style type="text/css">
@media only screen and (max-width: 767px) {
#tntTracking td:nth-of-type(1):before { content: "Date / Time"; }
#tntTracking td:nth-of-type(2):before { content: "Activity"; }
#tntTracking td:nth-of-type(3):before { content: "Location"; }
}
</style>
<section id="tntTracking">
<div class="header">
<h3>TNT - Track Shipments</h3>
<div class="button right"><a href="http://www.tnt.com" class="icon-btn icon-btn-rightover" target="_blank">Track on TNT</a></div>
<div class="clear"></div>
</div>
<!--START: results-->
<div class="titles2">
<div class="detail-results">Detailed Results</div>
</div>
<div class="left-col">
<!--START: trackno-->
<div class="label">Consigment Number:</div>
<div class="text">[trackno]</div>
<div class="clear"></div>
<!--END: trackno-->
<!--START: ShipDate-->
<div class="label">Collection Date:</div>
<div class="text">[ShipDate]</div>
<div class="clear"></div>
<!--END: ShipDate-->
<!--START: EstimatedDeliveryDate-->
<div class="label">Estimated Delivery:</div>
<div class="text">[EstimatedDeliveryDate]</div>
<div class="clear"></div>
<!--END: EstimatedDeliveryDate-->
<!--START: service_description-->
<div class="label">Service type:</div>
<div class="text">[service_description]</div>
<div class="clear"></div>
<!--END: service_description-->
<!--START: package_count-->
<div class="label">Pieces:</div>
<div class="text">[package_count]</div>
<div class="clear"></div>
<!--END: package_count-->
<!--START: Weight-->
<div class="label">Weight:</div>
<div class="text">[Weight]</div>
<div class="clear"></div>
<!--END: Weight-->
</div>
<div class="right-col">
<!--START: shipto_address-->
<div class="label">Destination:</div>
<div class="text">[shipto_address]</div>
<div class="clear"></div>
<!--END: shipto_address-->
</div>
<div class="clear"></div>
<div class="trackingStatus pad10 boxShadow">
<table>
<thead>
<tr class="titles2">
<th class="date-time">Date / Time</th>
<th class="desc">Activity</th>
<th class="loc">Location</th>
</tr>
</thead>
<tbody>
<!--START: activity-->
<tr class="row">
<td class="date-time">[date_time]</td>
<td class="desc">[description]</td>
<td class="loc">[location] </td>
</tr>
<!--END: activity-->
</tbody>
</table>
</div>
<!--END: results-->
<div class="clear"></div>
</section>