Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {var itemForm => $control['editInvoiceItemForm']}
- {control $itemForm begin}
- <table class="table" cellspacing="0" cellpading="0">
- <thead>
- <tr><th>{_"Kód produktu"}</th><th>{_"Název produktu"}</th><th>{_"Počet"}</th><th>{_"Cena"}</th><th>{_"Barva"}</th><th>{_"Size"}</th><th>{_"Akce"}</th></tr>
- </thead>
- {foreach $itemForm['items'] as $id => $item}
- <tr>
- {foreach $item->components as $input}<td>{$input->control}</td>{/foreach}
- <td><a href="{link deleteItem!, 'itemId' => $id}"><img src="{$baseUri}/adm/images/icons/delete.png" alt="smazat" /></a></td>
- </tr>
- {/foreach}
- </table>
- {$itemForm['send']->control}
- {control $itemForm end}
Advertisement
Add Comment
Please, Sign In to add comment