11 lines
670 B
Smarty
11 lines
670 B
Smarty
|
|
{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} {$all_currencies[$payment_method->currency_id]->sign}*}</label></h3>
|
|||
|
|
<div class="description">
|
|||
|
|
{$payment_method->description}
|
|||
|
|
</div>
|
|||
|
|
</li>
|
|||
|
|
{/foreach}
|