Subversion-Projekte lars-tiefland.content-management

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<table width="1000">
    <tr>
        <td valign="top">
            <form method="post">
            <table width="100%">
                <tr class="links">
                    <td>ID</td>
                    <td>Name</td>
                    <td>Kurzname</td>
                {if $smarty.get.action=="delete"}
                    <td></td>
                {/if}
                </tr>
            {section loop=$logistiker name=l_ind}
                <tr class="{cycle values='rechts,links'}">
                    <td>{$logistiker[l_ind].id}</td>
                    <td>
                        <a href="?action=edit&id={$logistiker[l_ind].id}">{$logistiker[l_ind].name}</a>
                    </td>
                    <td>{$logistiker[l_ind].kname}</td>
                {if $smarty.get.action=="delete"}
                    <td>
                        <input type="checkbox" name="l_ids[]" value="{$logistiker[l_ind].id}">
                    </td>
                {/if}
                </tr>
            {/section}
            {if $smarty.get.action=="delete"}
                <tr class="links">
                    <td colspan="4" align="center">
                        <input type="hidden" name="mode" value="delete">
                        <input type="submit" value="LÖSCHEN">
                    </td>
                </tr>
            {/if}
            </table>
            </form>
        </td>
        {include file="../toolbox/templates/common/buttons.tpl"}
    </tr>
</table>