14 lines
366 B
Smarty
14 lines
366 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=table}
|
||
|
|
{if $data > 30}
|
||
|
|
<span class="danger">{$data}</span>
|
||
|
|
{elseif $data > 20}
|
||
|
|
<span class="warning">{$data}</span>
|
||
|
|
{else}
|
||
|
|
<span class="success">{$data}</span>
|
||
|
|
{/if}
|
||
|
|
{/function}
|