Subversion-Projekte lars-tiefland.ci

Revision

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

<!-- $Id: edit_autobestellung_config.tpl 2415 2020-06-01 10:28:43Z lars $ BEGIN -->
<style>
                .tr0 {
                        background-color:#e3e3e3;
                }
                .tr1 {
                        background-color:#fff;
                }
</style>
<form method="post">
        <table class="keinRand">
        {foreach $config as $shopId => $shopCfg}
                <tr>
                        <th colspan="2" class="links" align="center">{$shops[$shopId]}</th>
                </tr>
                {foreach $shopCfg as $key => $value}
                <tr class="{cycle values="tr1,tr0"}">
                        <td>
                                <label for="{$key}_{$shopId}">{$key}</label>
                        </td>
                        <td>
                                <input type="text" name="cfg[{$shopId}][{$key}]" id="{$key}_{$shopId}" value="{$value}" />
                        </td>
                </tr>
                {/foreach}
        {/foreach}
                <tr>
                        <td colspan="2" align="center">
                                <input type="submit" value="Konfiguration speichern" />
                        </td>
                </tr>
        </table>
</form>
<!-- $Id: edit_autobestellung_config.tpl 2415 2020-06-01 10:28:43Z lars $ - END -->