// adding missing admin/themes/template/scenes/form.tpl

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10154 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2011-11-16 08:52:18 +00:00
parent 916d1fbaef
commit a5ee9ec98c
+15
View File
@@ -0,0 +1,15 @@
{extends file="helper/form/form.tpl"}
{block name="after"}
<script type="text/javascript">
startingData = new Array();
{foreach from=$products item=product key=key}
startingData[{$key}] = new Array(
'{$product.details->name}',
'{$product.id_product}',
{$product.x_axis},
{$product.y_axis},
{$product.zone_width},
{$product.zone_height});
{/foreach}
</script>
{/block}