zoneread.tpl
2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<div class=clear><div class=main>
{if $admin == 'yes'}<p><a class=new id=new href="{$src}newzone.php">Create a new master zone</a></p>{else}<h4>List of your master zones</h4>{/if}
{if $zonelist}<table style="min-width:600">
<tr>
<th>Name</th>
<th>Serial</th>
<th>Changed</th>
<th> </th>
<th colspan=2>Secure</th>
<th> </th>
<th colspan=2>Valid</th>
<th> </th>
<th colspan=2>Action</th>
</tr>
{section name=i loop=$zonelist}
<tr>
<td>{$zonelist[i].name}</td>
<td>{$zonelist[i].serial}</td>
{if $zonelist[i].updated == "yes"}<td class=ok title=Yes alt=Yes> </td>
{elseif $zonelist[i].updated == "no"}<td class=no title=No alt=No> </td>
{else}<td class=some title=Unknown alt=Unknown></td>
{/if}
<td class=empty> </td>
{if $zonelist[i].secured == "yes"}<td class=ok title=Yes alt=Yes> </td>
{if $zonelist[i].valid == "yes" and $zonelist[i].updated == "no"}<td class=view><a alt="View zone as secured" title="View zone as secured" href="{$src}zoneview.php?i={$zonelist[i].id}&s=1"> </a></td>
{else}<td class=empty></td>
{/if}
{elseif $zonelist[i].secured == "no"}<td colspan=2 class=no title=No alt=No></td>
{/if}
<td class=empty> </td>
{if $zonelist[i].valid == "yes"}<td class=ok title=Yes alt=Yes> </td>{if $zonelist[i].updated == "no"}<td class=view><a alt="View zone as plain" title="View zone as plain" href="{$src}zoneview.php?i={$zonelist[i].id}&s=0"> </a></td>{else}<td class=preview><a alt="Preview zone" title="Preview zone" href="{$src}zonepview.php?i={$zonelist[i].id}&s=0"> </a></td>{/if}
{elseif $zonelist[i].valid == "no"}<td class=nok title=Problem alt=Problem></td><td class=empty></td>
{else}<td class=some title=Maybe alt=Maybe></td><td class=check><a alt="Check zone" title="Check zone" href="{$src}zonelist.php?i={$zonelist[i].id}&check=y{if $pages}&page={$current_page}{/if}"> </a></td>
{/if}
<td class=empty> </td>
<td class=ed><a title="Edit zone" alt="Edit zone" href="{$src}record.php?i={$zonelist[i].id}"> </a></td>
<td class=del><a alt="Remove zone" title="Remove zone" href="{$src}deletezone.php?i={$zonelist[i].id}{if $pages}&page={$current_page}{/if}"> </a></td>
</tr>
{/section}
</table>{else}<p>You don't have master zones.</p>{/if}
</div></div>
{include file="pages.tpl"}