Files
2026-04-09 18:31:51 +02:00

14 lines
414 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=rows_browsed}
{if $data > 400}
<span class="danger">{$data} rows browsed</span>
{elseif $data > 100}
<span class="warning">{$data} rows browsed</span>
{else}
<span class="success">{$data} rows browsed</span>
{/if}
{/function}