Subversion-Projekte lars-tiefland.laravel_shop

Revision

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

{extends file="admin/index.tpl"}
{block name="maincontent"}
    <!-- $Id: shippingGroups.tpl 1711 2023-05-19 21:44:17Z lars $ BEGIN -->
    <table style="width:100%">
        <thead>
            <tr>
                <td>#</td>
                <td>Name</td>
                <td>Bedingungen</td>
                <td>Aktonen</td>
            </tr>
        </thead>
        <tbody>
        {foreach $shippingGroups as $group}
            <tr>
                <td>{$group->id}</td>
                <td>{$group->name}</td>
                <td>
                    {foreach explode(";",$group->conditions) as $condition}
                        {$condition|ucfirst}
                        {if !$condition@last}<br>{/if}
                    {/foreach}
                </td>
                <td></td>
            </tr>
        {/foreach}
        </tbody>
    </table>
    <!-- $Id: shippingGroups.tpl 1711 2023-05-19 21:44:17Z lars $ END -->
{/block}