19 lines
907 B
Smarty
19 lines
907 B
Smarty
{foreach $object->getAvailableMethods() as $methodCode => $method}
|
|
<div class="payment-item display-row {$name}" data-cart="item">
|
|
<div class="display-cell">
|
|
{$method_id = "{$id}-{$methodCode}"}
|
|
<label class="c-input c-radio custom-radio custom-control" for="pay{$method_id}">
|
|
<input type="radio" name="payment_id" value="{$method_id}" class="custom-control-input" id="pay{$method_id}" {$body.payment_id|checked:$method_id nofilter}>
|
|
<span class="custom-control-indicator c-indicator"></span>
|
|
<img src="/static/images/giroCheckout/{$methodCode}.png" style="width: 75px; height: auto;" title="{$method.name}">
|
|
|
|
<span class="nowrap">{$method.name}</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="display-cell delivery-price text-right">
|
|
{$payment.price.value_with_vat|format_price}
|
|
</div>
|
|
</div>
|
|
{/foreach}
|