| 78 |
lars |
1 |
<!-- $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) $ -->
|
|
|
2 |
{include file="header.tpl"}
|
|
|
3 |
<table>
|
|
|
4 |
<tr>
|
|
|
5 |
<th>Kunden-Nr.</th>
|
|
|
6 |
<th>Kunde</th>
|
|
|
7 |
<th>E-Mail</th>
|
|
|
8 |
<th>Domain</th>
|
|
|
9 |
<th>Aktionen</th>
|
|
|
10 |
</tr>
|
|
|
11 |
{section name=k_ind loop=$kunden}
|
|
|
12 |
<tr>
|
|
|
13 |
<td>{$kunden[k_ind].k_nr}</td>
|
|
|
14 |
<td>{$kunden[k_ind].k_name}</td>
|
|
|
15 |
<td>{$kunden[k_ind].k_email}</td>
|
|
|
16 |
<td>{$kunden[k_ind].k_domain}</td>
|
|
|
17 |
<td>
|
|
|
18 |
<form action="index.php" method="post">
|
|
|
19 |
<input type="hidden" name="mode" value="details">
|
|
|
20 |
<input type="hidden" name="id" value="{$kunden[k_ind].k_nr}">
|
|
|
21 |
<input type="submit" value="Details">
|
|
|
22 |
</form>
|
|
|
23 |
</td>
|
|
|
24 |
</tr>
|
|
|
25 |
{/section}
|
|
|
26 |
</table>
|
|
|
27 |
{include file="footer.tpl"}
|