Subversion Repositories SmartDukaan

Rev

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

#set( $updates = $action.getUpdates() )
        <h3>Shipping Status</h3>
        <table cellspacing="0" cellpadding="0" border="0" width="100%">
                <tbody>
                        <tr>
                                <th width="20%">Date</th>
                                <th width="20%">Time</th>
                                <th width="20%">Location</th>
                                <th width="40%">Details</th>
                        </tr>
                                                        
#foreach( $update in $updates )
          <tr>
                <td>$update.getDate()</td>
                <td>$update.getTime()</td>
                <td>$update.getCity()</td>
                <td>$update.getDescription()</td>
          </tr>
#end
                </tbody>
        </table>