Subversion-Projekte lars-tiefland.webhosting

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<!-- $URL: http://repos.lars-tiefland.de:8080/svn/webhosting/trunk/admin/templates/index.tpl $ last modified in Revision $Rev: 51 $ by $Author: lars $ at $Date: 2007-06-10 13:55:19 +0200 (So, 10. Jun 2007) $ -->
{include file="header.tpl"}
        <table>
                <tr>
                        <th>Kunden-Nr.</th>
                        <th>Kunde</th>
                        <th>E-Mail</th>
                        <th>Domain</th>
                        <th>Aktionen</th>
                </tr>
                {section name=k_ind loop=$kunden}
                <tr>
                        <td>{$kunden[k_ind].k_nr}</td>
                        <td>{$kunden[k_ind].k_name}</td>
                        <td>{$kunden[k_ind].k_email}</td>
                        <td>{$kunden[k_ind].k_domain}</td>
                        <td>
                                <form action="index.php" method="post">
                                        <input type="hidden" name="mode" value="details">
                                        <input type="hidden" name="id" value="{$kunden[k_ind].k_nr}">
                                        <input type="submit" value="Details">
                                </form>
                        </td>
                </tr>
                {/section}
        </table>
{include file="footer.tpl"}