IP Reg is a IPAM tool to keep track of assets, nodes (IP addresses, MAC addresses, DNS aliases) within different subnets, over different locations or even VLAN's. Written in PHP, used with a MySQL-database to have a unique insight in your local network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
ipreg/tpl/zone.tpl

46 lines
905 B

<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>