<div class="padding-top-20"><a href="#" id="foxdeliGetLog" class="button" style="margin-bottom: 20px">{$translate['downloadCsv']}</a>
    <table class="log">
        <thead>
        <tr>
            <th>{$translate['date']}</th>
            <th>{$translate['logId']}</th>
            <th>{$translate['order']}</th>
            <th>{$translate['status']}</th>
            <th>{$translate['payload']}</th>
        </tr>
        </thead>
        <tbody n:if="$result">
        <tr n:foreach="$result as $value">
            <td>{date( 'd.m.Y H:i:s', strtotime( $value->created ) )}</td>
            <td class="text-center">{$value->id}</td>
            <td class="text-center">{$value->order_id}</td>
            <td>{$value->status_code}</td>
            <td><small>{$value->payload}</small></td>
        </tr>
        </tbody>
    </table>
</div>
