Subversion-Projekte lars-tiefland.webanos.faltradxxs.de

Revision

Revision 26 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

{extends file="index.tpl"}
{block name="maincontent"}
    {$orders->links()}
    <table style="width: 100%">
        <tr>
            <th>BestellNr.</th>
            <th>Datum</th>
            <th>Status</th>
            <th></th>
            <th></th>
            <th>€</th>
            <th>Betrag</th>
            <th>Kunde</th>
            <th>Ort</th>
            <th>Shop</th>
            <th>Art</th>
        </tr>
        {foreach $orders as $order}
            <tr>
                <td>
                    <a href="//orders/{$order->id}/edit">{$order->id}</a>
                </td>
                <td>{$order->created_at|date_format:"%x"}</td>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
                <td>&nbsp;</td>
                <td>{$order->total_amount_buffer|money_format_red:2}</td>
                <td>{$order->billAddr->name} {$order->billAddr->lastname}</td>
                <td>{$order->billAddr->zip} {$order->billAddr->city}</td>
                <td>{$order->shop->name}</td>
                <td>{$order->orderType->short}</td>
            </tr>
        {/foreach}
    </table>
    {$orders->links()}
{/block}