0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
templates
/
debug
/
[
Home
]
File: tiki-debug_tikitables.tpl
{* $Id: tiki-debug_tikitables.tpl 53397 2015-01-04 05:13:24Z jyhem $ *} {* Show Tiki tables *} {if count($command_result) > 0} {* Can it be == 0 ?? *} <table id="tikitables"> <caption>Tables in Tiki DB</caption> {section name=i loop=$command_result} {* make row new start *} {if ($smarty.section.i.index % 3) == 0} <tr> {/if} <td> {$command_result[i]} </td> {if ($smarty.section.i.index % 3) == 2} </tr> {/if} {/section} {* Close <TR> if still opened... *} {if $smarty.section.i.index % 3} </tr> {/if} </table> <small>Total {$smarty.section.i.total} tables matched</small> {/if}{* if count($command_result) > 0 *}