source: trunk/templates/listpool.tmpl@ 570

Last change on this file since 570 was 570, checked in by Kris Deugau, 11 years ago

/trunk

Work in progress, see #5:
Update IP pool listing with new fields.
Also update the listing itself to allow allocation of unassigned IPs
right from the list, rather than forcing use of either admin tools
or guided assignment.

File size: 1.6 KB
Line 
1<TMPL_IF webpath></TMPL_IF>
2<br>
3<div class="tbltitle">Listing pool IPs for <TMPL_VAR NAME=block><br>
4(<TMPL_VAR NAME=disptype> in <TMPL_VAR NAME=city>)</div>
5<br>
6
7<TMPL_IF realblock>
8<div class="indent"><b>Reserved IPs:</b><br>
9<div class="indent">
10<table>
11<tr class="row0"><td>Network IP:</td><td><TMPL_VAR NAME=netip></td></tr>
12<tr class="row1"><td>Gateway:</td><td><TMPL_VAR NAME=gate></td></tr>
13<tr class="row0"><td>Broadcast:</td><td><TMPL_VAR NAME=bcast></td></tr>
14<tr class="row1"><td>Netmask:</td><td><TMPL_VAR NAME=mask></td></tr>
15</table>
16</div>
17</div>
18</TMPL_IF>
19
20<table width="98%" cellspacing="0" class="center">
21<tr>
22<td class="heading">IP</td>
23<td class="heading">Customer ID</td>
24<td class="heading">Available?</td>
25<td class="heading">Description</td>
26<TMPL_IF maydel><td class="heading"></td></TMPL_IF>
27</tr>
28
29<TMPL_LOOP name=poolips>
30<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
31<td>
32<TMPL_IF delme>
33<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=edit&amp;block=<TMPL_VAR NAME=ip>&amp;rdepth=<TMPL_VAR NAME=ipdepth>"><TMPL_VAR NAME=ip></a>
34<TMPL_ELSE>
35<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=assign&amp;block=<TMPL_VAR NAME=ip>&amp;rdepth=<TMPL_VAR NAME=ipdepth>&amp;fbtype=i"><TMPL_VAR NAME=ip></a>
36</TMPL_IF>
37</td>
38<td><TMPL_VAR NAME=custid></td>
39<td><TMPL_VAR NAME=available></td>
40<td><TMPL_VAR NAME=desc></td>
41<TMPL_IF maydel><td><TMPL_IF delme>
42<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=delete&amp;block=<TMPL_VAR NAME=ip>&amp;alloctype=<TMPL_VAR NAME=type>">Unassign this IP</a>
43</TMPL_IF></td></TMPL_IF>
44</tr>
45</TMPL_LOOP>
46
47</table>
48
49<br>
Note: See TracBrowser for help on using the repository browser.