ipreg/tpl/zone.tpl

47 lines
905 B
Smarty

<table class="title">
<tr>
<td class="header">
<img class="icon" src="images/table.png" alt="" />
{$lang_zones} ({$zones|@count})
</td>
<td align="right">
{if $suser_add || $suser_admin}
<a href="zone.php?f=add"><img src="images/add.png" alt="{$lang_zone_add}"{if $suser_tooltips} title="{$lang_zone_add}"{/if}></a>
{/if}
</td>
</tr>
</table>
<table class="info">
<tr>
<td class="header">
{$lang_zone}
</td>
<td class="header">
Hostmaster
</td>
<td class="header">
Serial
</td>
</tr>
{foreach item=zone from=$zones}
<tr>
<td class="label">
<a href="zone.php?f=view&id={$zone.id}">{$zone.origin}</a>
</td>
<td class="value">
{$zone.hostmaster}
</td>
<td class="value">
{$zone.serial}
</td>
</tr>
{foreachelse}
<tr>
<td colspan="3">
{$lang_zone_none}
</td>
</tr>
{/foreach}
</table>