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

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

{extends file="index.tpl"}
{block name="maincontent"}
    <!-- $Id: shippingGroups.tpl 1682 2023-05-13 23:52:23Z 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 1682 2023-05-13 23:52:23Z lars $ END -->
{/block}