// Added KPIs to the category page and fixed dashboard data

This commit is contained in:
Damien Metzger
2013-10-29 11:03:09 +01:00
parent b3d7b8754b
commit dabb23ac8d
4 changed files with 99 additions and 18 deletions
@@ -22,9 +22,9 @@
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
<{if $href}a style="display:block" href="{$href|escape}"{else}div{/if} id="{$id|escape}" class="box-stats {$color|escape}" >
{if $icon}<i class="{$icon|escape}"></i>{/if}
{if $chart}
<{if isset($href) && $href}a style="display:block" href="{$href|escape}"{else}div{/if} id="{$id|escape}" class="box-stats {$color|escape}" >
{if isset($icon) && $icon}<i class="{$icon|escape}"></i>{/if}
{if isset($chart) && $chart}
<div class="boxchart-overlay">
<div class="boxchart">
</div>
@@ -34,7 +34,7 @@
<span class="value">{$value|escape}</span>
</{if $href}a{else}div{/if}>
{if $source != ''}
{if isset($source) && $source != ''}
<script>
$.ajax({
url: '{$source|addslashes}' + '&rand=' + new Date().getTime(),