Changeset 682 for trunk/templates


Ignore:
Timestamp:
01/20/15 16:57:05 (9 years ago)
Author:
Kris Deugau
Message:

/trunk

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

Location:
trunk/templates
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/templates/showsubs.tmpl

    r653 r682  
    11<div class="tbltitle">Subnets in <TMPL_VAR NAME=block></div>
    2 <br>
    32<TMPL_VAR NAME=addperm>
    43
    5 <TMPL_IF sublist>
     4<TMPL_IF contlist>
     5<br>
     6<hr class="w30">
     7<div class="tbltitle">Containers</div>
     8<br>
     9<table class="center" width="98%" cellspacing="0">
     10<tr>
     11<td class="heading">Container block</td>
     12<td class="heading">Location</td>
     13<td class="heading">Type</td>
     14<td class="heading">Description/Name</td>
     15<td class="heading">Allocations</td>
     16<td class="heading">Free blocks</td>
     17<td class="heading">Largest free block</td>
     18</tr>
     19
     20<TMPL_LOOP NAME=contlist>
     21<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
     22<td><a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=showsubs&amp;parent=<TMPL_VAR NAME=id>"><TMPL_VAR NAME=block></a></td>
     23<td><TMPL_VAR NAME=city></td>
     24<td><TMPL_VAR NAME=type></td>
     25<td><TMPL_VAR NAME=desc></td>
     26<td><TMPL_VAR NAME=suballocs></td>
     27<td><TMPL_VAR NAME=subfree></td>
     28<td><TMPL_VAR ESCAPE=HTML NAME=lfree></td>
     29</TMPL_LOOP>
     30</table>
     31<TMPL_ELSE>
     32<hr class="w30">
     33<div class="tbltitle">No container blocks in <TMPL_VAR NAME=block></div>
     34</TMPL_IF>
     35
     36<TMPL_IF alloclist>
     37<br>
     38<hr class="w30">
     39<div class="tbltitle">Usage allocations</div>
     40<br>
    641<table width="98%" cellspacing="0" class="center">
    7 
    842<tr>
    9 <td class="heading">Netblock</td>
    10 <td class="heading">City</td>
     43<td class="heading">CIDR allocation</td>
     44<td class="heading">Location</td>
    1145<td class="heading">Type</td>
    1246<td class="heading">CustID</td>
     
    1549</tr>
    1650
    17 <TMPL_LOOP NAME=sublist>
     51<TMPL_LOOP NAME=alloclist>
    1852<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
    1953<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>
    2354<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>
    2455<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>
    2656</td>
    2757<td><TMPL_VAR NAME=city></td>
    2858<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>
     59<td><TMPL_VAR NAME=custid></td>
    3060<td><TMPL_VAR NAME=swip><TMPL_IF partswip><small>*</small></TMPL_IF></td>
    3161<td><TMPL_VAR NAME=desc></td>
    3262</tr>
    33 <TMPL_IF hassubs>
    34 <tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
    35 <td colspan=4>
    36 Containers: <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>
    3963</TMPL_LOOP>
    4064</table>
    4165<TMPL_ELSE>
    4266<hr class="w30">
    43 <div class="tbltitle">No allocations in <TMPL_VAR NAME=block>
     67<div class="tbltitle">No usage allocations in <TMPL_VAR NAME=block></div>
     68</TMPL_IF>
     69
    4470<TMPL_IF maydel>
     71<div class="tbltitle">
    4572<br>
    4673<form action="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi" method=POST>
     
    5279</fieldset>
    5380</form>
    54 </TMPL_IF>
    5581</div>
    5682</TMPL_IF>
  • trunk/templates/showsubs2.tmpl

    r678 r682  
    1818<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
    1919<td>
     20<TMPL_IF subblock>Sub </TMPL_IF>
    2021<TMPL_IF hassubs>
    2122<a href="<TMPL_VAR NAME=webpath>/cgi-bin/main.cgi?action=showsubs&amp;parent=<TMPL_VAR NAME=id>"><TMPL_VAR NAME=block></a>
Note: See TracChangeset for help on using the changeset viewer.