// list_header in adminproducts

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9905 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2011-11-04 17:50:22 +00:00
parent 100dc43616
commit 398823b8ee
@@ -0,0 +1,11 @@
{extends file="helper/list/list_header.tpl"}
{block name=leadin}
{l s='Go to category:'}
<select id="go_to_categ" name="go_to_categ">
{foreach from=$category_tree item=categ}
<option value="{$categ->id}" {if $categ->selected}selected="selected"{/if} >
{$categ->dashes}{$categ->name} ({$categ->id})
</option>
{/foreach}
</select>
{/block}