14 lines
398 B
Smarty
14 lines
398 B
Smarty
|
|
{**
|
||
|
|
* For the full copyright and license information, please view the
|
||
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
||
|
|
*}
|
||
|
|
{function name=sql_queries}
|
||
|
|
{if $data > 150}
|
||
|
|
<span class="danger">{$data} queries</span>
|
||
|
|
{elseif $data > 100}
|
||
|
|
<span class="warning">{$data} queries</span>
|
||
|
|
{else}
|
||
|
|
<span class="success">{$data} queries</span>
|
||
|
|
{/if}
|
||
|
|
{/function}
|