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

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
4 lars 1
{extends file="index.tpl"}
2
{block name="maincontent"}
3
    <!-- $Id: shippingGroups.tpl 1682 2023-05-13 23:52:23Z lars $ BEGIN -->
4
    <table style="width:100%">
5
        <thead>
6
            <tr>
7
                <td>#</td>
8
                <td>Name</td>
9
                <td>Bedingungen</td>
10
                <td>Aktonen</td>
11
            </tr>
12
        </thead>
13
        <tbody>
14
        {foreach $shippingGroups as $group}
15
            <tr>
16
                <td>{$group->id}</td>
17
                <td>{$group->name}</td>
18
                <td>
19
                    {foreach explode(";",$group->conditions) as $condition}
20
                        {$condition|ucfirst}
21
                        {if !$condition@last}<br>{/if}
22
                    {/foreach}
23
                </td>
24
                <td></td>
25
            </tr>
26
        {/foreach}
27
        </tbody>
28
    </table>
29
    <!-- $Id: shippingGroups.tpl 1682 2023-05-13 23:52:23Z lars $ END -->
30
{/block}