Subversion Repositories SmartDukaan

Rev

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

#set($address = $action.getAddress())
#set($updates = $action.getUpdates())

<!-- shipmentDetails -->
<div id="shipmentDetails" style="display:none;">
        <div class="heading">
        <div class="title"><span class="awbNo"></span> Shipment Details</div>
        <div class="close"><a href="javascript:closeShipmentDetails();">[x]</a></div>
        <div class="clearBoth"></div>
    </div>
    
    <div id="orderShippingAddress">
        <h3>Shipping Address</h3>
        <div class="address">
                <label>$address.getName()</label><br />
                <label>$address.getLine1() </label><br />
                <label>$address.getLine2()</label><br />
                <label>$address.getCity()</label><br />
                <label>$address.getState()</label><br />
                <label>Pin: $address.getPin()</label><br />
                <label>Mob: $address.getPhone() </label><br />
                </div>
    </div>
    
        <h3>Shipping Status</h3>
    <div id="orderShippingStatus">
        <table cellpadding="0" cellspacing="0" border="0" width="100%">
                <tr>
                <th width="20%">Date</th>
                <th width="12%">Time</th>
                <th width="22%">Location</th>
                <th width="46%">Details</th>
            </tr>
                        #foreach($update in $updates)
            <tr>
                <td>$update.get("DATE")</td>
                <td>$update.get("TIME")</td>
                <td>$update.get("LOCATION")</td>
                <td>$update.get("STATUS")</td>
                                su.getDescription()
                su.getTimestamp()
                su.getPin()
            </tr>
                        #end
        </table>
    </div>
    
</div>
<!-- /shipmentDetails -->