11 lines
539 B
Smarty
11 lines
539 B
Smarty
{if $order->isActive() && !$order->isPaid(true)}
|
|
<div class="text-center payment-link">
|
|
<h1 class="finish_payment">{t}Vaše objednávka čeká na zaplacení{/t}</h1>
|
|
<p>{t}Pro dokončení online platby pokračujte kliknutím na tlačítko níže.{/t}</p>
|
|
|
|
<div class="text-center">
|
|
<a href="{$payment->getPaymentUrl(1)}" class="btn btn-primary" style="font-size: 1.5em; font-weight: 700; margin-bottom:8px;">{t}Zaplatit online{/t} {$order->getRemainingPayment()|format_price}</a>
|
|
</div>
|
|
</div>
|
|
{/if}
|