Subversion-Projekte lars-tiefland.laravel_shop

Revision

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

{extends file="admin/index.tpl"}
{block name="maincontent"}
    <!-- $Id: shipping.tpl 1711 2023-05-19 21:44:17Z lars $ BEGIN -->

    <table style="width:100%">
        <thead>
            <tr>
                <td>Rang</td>
                <td>Name</td>
                <td>Versandgruppe</td>
                <td></td>
                <td>Preis</td>
                <td>Gewichtsbereich</td>
                <td>Preisbereich</td>
                <td>Aktionen</td>
            </tr>
        </thead>
        <tbody>
        {foreach $shipping as $versand}
            <tr>
                <td>{$versand->rank}</td>
                <td>{$versand->name}</td>
                <td>{$versand->shipping_group->name}</td>
                <td></td>
                <td>{$versand->price|money_format}</td>
                <td>{$versand->calc_weight_from|number_format:2:",":"."} kG - {$versand->calc_weight_to|number_format:2:",":"."} kG</td>
                <td>{$versand->calc_price_from|money_format} - {$versand->calc_price_to|money_format}</td>
                <td></td>
            </tr>
        {/foreach}
        </tbody>
    </table>
    <!-- $Id: shipping.tpl 1711 2023-05-19 21:44:17Z lars $ END -->
{/block}