55 lines
1.7 KiB
Smarty
55 lines
1.7 KiB
Smarty
{*
|
|
* 2014-2023 Presta-Mod.pl Rafał Zontek
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* Poniższy kod jest kodem płatnym, rozpowszechanie bez pisemnej zgody autora zabronione
|
|
* Moduł można zakupić na stronie Presta-Mod.pl. Modyfikacja kodu jest zabroniona,
|
|
* wszelkie modyfikacje powodują utratę gwarancji
|
|
*
|
|
* http://presta-mod.pl
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
*
|
|
* @author Presta-Mod.pl Rafał Zontek <biuro@presta-mod.pl>
|
|
* @copyright 2014-2023 Presta-Mod.pl
|
|
* @license Licecnja na jedną domenę
|
|
* Presta-Mod.pl Rafał Zontek
|
|
*}
|
|
<div class="pminpostpaczkomaty-others">
|
|
{if $packages}
|
|
<table class="table">
|
|
<tr>
|
|
<th>{l s='InPost number' mod='pminpostpaczkomaty'}</th>
|
|
<th>{l s='Actions' mod='pminpostpaczkomaty'}</th>
|
|
</tr>
|
|
{foreach from=$packages item='package'}
|
|
{if $package['nr_listu']}
|
|
<tr>
|
|
<td>
|
|
<a
|
|
class="print-package-label"
|
|
href="{$link->getAdminLink('PmInpostPaczkomatyOrder')|escape:'htmlall':'UTF-8'}&printlabel=1&id_order={$id_order|escape:'htmlall':'UTF-8'}&id={$package['id']|escape:'htmlall':'UTF-8'}"
|
|
title="{l s='Print label' mod='pminpostpaczkomaty'}"
|
|
>
|
|
<i class="material-icons" aria-hidden="true">print</i> {$package['nr_listu']|escape:'htmlall':'UTF-8'}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a
|
|
class="btn-view"
|
|
href="{$link->getAdminLink('PmInpostPaczkomatyList')|escape:'htmlall':'UTF-8'}&id_orders={$package['id']|escape:'htmlall':'UTF-8'}&vieworders"
|
|
target="_blank"
|
|
title="{l s='Show' mod='pminpostpaczkomaty'}"
|
|
>
|
|
<!-- Czy jest jakaś ikona sugerująca podgląd? -->
|
|
<i class="material-icons" aria-hidden="true">visibility</i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{/foreach}
|
|
</table>
|
|
{/if}
|
|
</div> |