25 lines
532 B
Smarty
25 lines
532 B
Smarty
|
|
{**
|
||
|
|
* For the full copyright and license information, please view the
|
||
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
||
|
|
*}
|
||
|
|
<div class="row">
|
||
|
|
<h2>
|
||
|
|
<a name="doubles">Doubles</a>
|
||
|
|
</h2>
|
||
|
|
|
||
|
|
<table class="table table-condensed">
|
||
|
|
{foreach $doublesQueries as $q => $nb}
|
||
|
|
{if $nb > 1}
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
{sql_queries data=$nb}
|
||
|
|
</td>
|
||
|
|
<td class="pre">
|
||
|
|
<pre>{$q}</pre>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
{/if}
|
||
|
|
{/foreach}
|
||
|
|
</table>
|
||
|
|
</div>
|