source: trunk/templates/showsubs.tmpl@ 672

Last change on this file since 672 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
Line 
1<div class="tbltitle">Subnets in <TMPL_VAR NAME=block></div>
2<br>
3<TMPL_VAR NAME=addperm>
4
5<TMPL_IF sublist>
6<table width="98%" cellspacing="0" class="center">
7
8<tr>
9<td class="heading">Netblock</td>
10<td class="heading">City</td>
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
17<TMPL_LOOP NAME=sublist>
18<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
19<td>
20<TMPL_IF hassubs>
21<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=showsubs&amp;parent=<TMPL_VAR NAME=id>"><TMPL_VAR NAME=block></a>
22<TMPL_ELSE>
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>
25</TMPL_IF>
26</td>
27<td><TMPL_VAR NAME=city></td>
28<td><TMPL_VAR NAME=type></td>
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>
30<td><TMPL_VAR NAME=swip><TMPL_IF partswip><small>*</small></TMPL_IF></td>
31<td><TMPL_VAR NAME=desc></td>
32</tr>
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>
39</TMPL_LOOP>
40</table>
41<TMPL_ELSE>
42<hr class="w30">
43<div class="tbltitle">No allocations in <TMPL_VAR NAME=block>
44<TMPL_IF maydel>
45<br>
46<form action="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi" method=POST>
47<fieldset><legend class="noshow">&nbsp;</legend>
48<input type=hidden name=action value="delete">
49<input type=hidden name=block value="<TMPL_VAR NAME=del_id>">
50<input type=hidden name=basetype value="b">
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
61<div class="tbltitle">Free blocks within <TMPL_VAR NAME=block></div>
62
63<TMPL_IF freelist>
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
70<TMPL_LOOP name=freelist>
71<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
72<TMPL_IF newvrf><td colspan=2>vrf: <TMPL_VAR NAME=newvrf></td>
73<TMPL_ELSE>
74<td>
75<TMPL_IF mayadd>
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>
77<TMPL_ELSE>
78<TMPL_VAR NAME=fblock>
79</TMPL_IF>
80</td>
81<td><TMPL_VAR NAME=frange></td>
82</TMPL_IF>
83</tr>
84</TMPL_LOOP>
85</table>
86<TMPL_ELSE>
87<br>
88<hr class="w30">
89<div class="tbltitle">No unassigned blocks in <TMPL_VAR NAME=block></div>
90</TMPL_IF>
Note: See TracBrowser for help on using the repository browser.