source: trunk/templates/showsubs2.tmpl@ 682

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

/trunk

Convert working hack for comparing container list layout into a
configuration switch, and pick a default.

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 subblock>Sub </TMPL_IF>
21<TMPL_IF hassubs>
22<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=showsubs&amp;parent=<TMPL_VAR NAME=id>"><TMPL_VAR NAME=block></a>
23<TMPL_ELSE>
24<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>
25<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>
26</TMPL_IF>
27</td>
28<td><TMPL_VAR NAME=city></td>
29<td><TMPL_VAR NAME=type></td>
30<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>
31<td><TMPL_VAR NAME=swip><TMPL_IF partswip><small>*</small></TMPL_IF></td>
32<td><TMPL_VAR NAME=desc></td>
33</tr>
34<TMPL_IF hassubs>
35<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
36<td colspan=4>
37Containers: <TMPL_VAR NAME=subcontainers>, Allocations: <TMPL_VAR NAME=suballocs>, Free: <TMPL_VAR NAME=subfree>, Largest free: <TMPL_VAR ESCAPE=HTML NAME=lfree>
38</td><td colspan=2></td></tr>
39</TMPL_IF>
40</TMPL_LOOP>
41</table>
42<TMPL_ELSE>
43<hr class="w30">
44<div class="tbltitle">No allocations in <TMPL_VAR NAME=block>
45<TMPL_IF maydel>
46<br>
47<form action="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi" method=POST>
48<fieldset><legend class="noshow">&nbsp;</legend>
49<input type=hidden name=action value="delete">
50<input type=hidden name=block value="<TMPL_VAR NAME=del_id>">
51<input type=hidden name=basetype value="b">
52<input type=submit value=" Remove this block ">
53</fieldset>
54</form>
55</TMPL_IF>
56</div>
57</TMPL_IF>
58
59<br>
60<hr class="w60">
61
62<div class="tbltitle">Free blocks within <TMPL_VAR NAME=block></div>
63
64<TMPL_IF freelist>
65<table width="98%" cellspacing="0" class="center">
66<tr>
67<td class="heading">CIDR block</td>
68<td class="heading">Range</td>
69</tr>
70
71<TMPL_LOOP name=freelist>
72<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
73<TMPL_IF newvrf><td colspan=2>vrf: <TMPL_VAR NAME=newvrf></td>
74<TMPL_ELSE>
75<td>
76<TMPL_IF mayadd>
77<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>
78<TMPL_ELSE>
79<TMPL_VAR NAME=fblock>
80</TMPL_IF>
81</td>
82<td><TMPL_VAR NAME=frange></td>
83</TMPL_IF>
84</tr>
85</TMPL_LOOP>
86</table>
87<TMPL_ELSE>
88<br>
89<hr class="w30">
90<div class="tbltitle">No unassigned blocks in <TMPL_VAR NAME=block></div>
91</TMPL_IF>
Note: See TracBrowser for help on using the repository browser.