Subversion Repositories SmartDukaan

Rev

Rev 1036 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
507 rajveer 1
#set($address = $action.getAddress())
2
#set($updates = $action.getUpdates())
3
 
4
<!-- shipmentDetails -->
5
<div id="shipmentDetails" style="display:none;">
6
	<div class="heading">
7
    	<div class="title"><span class="awbNo"></span> Shipment Details</div>
8
        <div class="close"><a href="javascript:closeShipmentDetails();">[x]</a></div>
9
        <div class="clearBoth"></div>
10
    </div>
11
 
12
    <div id="orderShippingAddress">
13
    	<h3>Shipping Address</h3>
14
        <div class="address">
15
    		<label>$address.getName()</label><br />
16
    		<label>$address.getLine1() </label><br />
17
    		<label>$address.getLine2()</label><br />
18
    		<label>$address.getCity()</label><br />
19
    		<label>$address.getState()</label><br />
20
    		<label>Pin: $address.getPin()</label><br />
21
    		<label>Mob: $address.getPhone() </label><br />
22
		</div>
23
    </div>
24
 
8156 anupam.sin 25
    	<h3>Shipping Status</h3>
507 rajveer 26
    <div id="orderShippingStatus">
27
        <table cellpadding="0" cellspacing="0" border="0" width="100%">
28
        	<tr>
29
            	<th width="20%">Date</th>
30
                <th width="12%">Time</th>
31
                <th width="22%">Location</th>
32
                <th width="46%">Details</th>
33
            </tr>
34
			#foreach($update in $updates)
35
            <tr>
36
            	<td>$update.get("DATE")</td>
37
                <td>$update.get("TIME")</td>
38
                <td>$update.get("LOCATION")</td>
39
                <td>$update.get("STATUS")</td>
40
				su.getDescription()
41
		su.getTimestamp()
42
		su.getPin()
43
            </tr>
44
			#end
45
        </table>
46
    </div>
47
 
48
</div>
49
<!-- /shipmentDetails -->