0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-01-30 20:16:21 +00:00
salesagility_SuiteCRM/include/ListView/ListViewButtons.tpl
2017-03-07 14:22:12 +00:00

11 lines
374 B
Smarty

{if isset($form.buttons)}
<ul class="list-view-action-buttons">
{counter assign="num_action_buttons" start=0 print=false}
{if count($form.buttons) > $num_action_buttons}
{foreach from=$form.buttons key=val item=button}
{if is_array($button) && $button.customCode}<li>{eval var=$button.customCode} </li>{/if}
{/foreach}
{/if}
</ul>
{/if}