source: trunk/templates/showsubs.tmpl@ 666

Last change on this file since 666 was 653, checked in by Kris Deugau, 9 years ago

/trunk

Extend listSubs() to include some details on container blocks when
appropriate. Not sure this format will work; it ends up looking very
busy and confused after importing a dataset from IPDB 2.8. Consider
splitting containers vs direct allocations (so that there would be
three main page sections, not two).

File size: 2.8 KB
RevLine 
[568]1<div class="tbltitle">Subnets in <TMPL_VAR NAME=block></div>
[467]2<br>
[568]3<TMPL_VAR NAME=addperm>
[467]4
[568]5<TMPL_IF sublist>
[467]6<table width="98%" cellspacing="0" class="center">
7
8<tr>
[568]9<td class="heading">Netblock</td>
10<td class="heading">City</td>
[467]11<td class="heading">Type</td>
12<td class="heading">CustID</td>
13<td class="heading">SWIPed?</td>
14<td class="heading">Description/Name</td>
15</tr>
16
[568]17<TMPL_LOOP NAME=sublist>
[527]18<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
[467]19<td>
[568]20<TMPL_IF hassubs>
[627]21<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=showsubs&amp;parent=<TMPL_VAR NAME=id>"><TMPL_VAR NAME=block></a>
[568]22<TMPL_ELSE>
[627]23<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=edit&amp;id=<TMPL_VAR NAME=id>&amp;basetype=b"><TMPL_VAR NAME=block></a>
24<TMPL_IF listpool> &nbsp; <a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=listpool&amp;pool=<TMPL_VAR NAME=id>">List IPs</a></TMPL_IF>
[568]25</TMPL_IF>
[467]26</td>
27<td><TMPL_VAR NAME=city></td>
28<td><TMPL_VAR NAME=type></td>
[568]29<td><a href="<TMPL_VAR NAME=webpath>/cgi-bin/search.cgi?stype=q&amp;input=<TMPL_VAR NAME=custid>"><TMPL_VAR NAME=custid></a></td>
[527]30<td><TMPL_VAR NAME=swip><TMPL_IF partswip><small>*</small></TMPL_IF></td>
[467]31<td><TMPL_VAR NAME=desc></td>
32</tr>
[653]33<TMPL_IF hassubs>
34<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
35<td colspan=4>
36Containers: <TMPL_VAR NAME=subcontainers>, Allocations: <TMPL_VAR NAME=suballocs>, Free: <TMPL_VAR NAME=subfree>, Largest free: <TMPL_VAR ESCAPE=HTML NAME=lfree>
37</td><td colspan=2></td></tr>
38</TMPL_IF>
[467]39</TMPL_LOOP>
40</table>
41<TMPL_ELSE>
42<hr class="w30">
[627]43<div class="tbltitle">No allocations in <TMPL_VAR NAME=block>
[568]44<TMPL_IF maydel>
[467]45<br>
[511]46<form action="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi" method=POST>
[513]47<fieldset><legend class="noshow">&nbsp;</legend>
[467]48<input type=hidden name=action value="delete">
[627]49<input type=hidden name=block value="<TMPL_VAR NAME=del_id>">
50<input type=hidden name=basetype value="b">
[467]51<input type=submit value=" Remove this block ">
52</fieldset>
53</form>
54</TMPL_IF>
55</div>
56</TMPL_IF>
57
58<br>
59<hr class="w60">
60
[568]61<div class="tbltitle">Free blocks within <TMPL_VAR NAME=block></div>
[467]62
[568]63<TMPL_IF freelist>
[467]64<table width="98%" cellspacing="0" class="center">
65<tr>
66<td class="heading">CIDR block</td>
67<td class="heading">Range</td>
68</tr>
69
[568]70<TMPL_LOOP name=freelist>
[527]71<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
[568]72<TMPL_IF newvrf><td colspan=2>vrf: <TMPL_VAR NAME=newvrf></td>
73<TMPL_ELSE>
74<td>
75<TMPL_IF mayadd>
[627]76<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=assign&amp;block=<TMPL_VAR NAME=fblock>&amp;fbid=<TMPL_VAR NAME=fbid>&amp;parent=<TMPL_VAR NAME=fbparent>"><TMPL_VAR NAME=fblock></a>
[568]77<TMPL_ELSE>
78<TMPL_VAR NAME=fblock>
79</TMPL_IF>
80</td>
[467]81<td><TMPL_VAR NAME=frange></td>
[568]82</TMPL_IF>
[467]83</tr>
84</TMPL_LOOP>
85</table>
86<TMPL_ELSE>
87<br>
88<hr class="w30">
[568]89<div class="tbltitle">No unassigned blocks in <TMPL_VAR NAME=block></div>
[467]90</TMPL_IF>
Note: See TracBrowser for help on using the repository browser.