Files
AtomicOld/design/carheart/html/cart_payment.tpl

11 lines
670 B
Smarty
Raw Permalink Normal View History

2026-02-15 18:29:53 +03:00
{foreach $payment_methods as $payment_method}
<li>
<div class="checkbox">
<input type=radio name=payment_method_id value='{$payment_method->id}' {if $payment_method@first}checked{/if} id=payment_{$payment_method->id}>
</div>
<h3><label for=payment_{$payment_method->id}> {$payment_method->name}{*, <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> {$cart->total_price|convert:$payment_method->currency_id}&nbsp;{$all_currencies[$payment_method->currency_id]->sign}*}</label></h3>
<div class="description">
{$payment_method->description}
</div>
</li>
{/foreach}