Subversion-Projekte lars-tiefland.inventar

Revision

Revision 15 | Revision 26 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

{include file="header.tpl"}
        <!-- $Id: index.tpl 16 2008-05-15 18:30:54Z lars $ -->
        <table>
                <tr>
                        <th>ID</th>
                        <th>Name</th>
                        <th>Aktionen</th>
                </tr>
        {section loop=$list name=c_ind}
                <tr>
                        <td>{$list[c_ind].id}</td>
                        <td>{$list[c_ind].name}</td>
                        <td>
                                <form method="post" action="">
                                        <input type="submit" value="Details">
                                        <input type="hidden" value="{$list[c_ind].id}" name="id">
                                        <input type="hidden" value="details" name="mode">
                                </form>
                                <form method="post" action="">
                                        <input type="submit" value="&auml;ndern">
                                        <input type="hidden" value="{$list[c_ind].id}" name="id">
                                        <input type="hidden" value="edit" name="mode">
                                </form>
                                <form method="post" action="">
                                        <input type="submit" value="l&ouml;schen">
                                        <input type="hidden" value="{$list[c_ind].id}" name="id">
                                        <input type="hidden" value="del" name="mode">
                                </form>
                        </td>
                </tr>
        {/section}
        </table>
{include file="footer.tpl"}