Fix semantic on the delivery method list

This commit is contained in:
touffies
2013-10-25 11:10:27 +02:00
parent b7dc345edd
commit 166407844b

View File

@@ -123,12 +123,12 @@
<div class="panel-body">
{loop type="delivery" name="deliveries" force_return="true"}
<div class="radio">
<label for="delivery-method_1">
{form_field form=$form field='delivery-module'}
<input type="radio" name="{$name}" {if $value == $ID}checked="checked"{/if} value="{$ID}">
{/form_field}
<strong>{$TITLE}</strong> / {currency attr="symbol"} {$POSTAGE}
</label>
{form_field form=$form field='delivery-module'}
<label for="delivery-method_{$ID}">
<input type="radio" name="{$name}" id="delivery-method_{$ID}" {if $value == $ID}checked="checked"{/if} value="{$ID}">
<strong>{$TITLE}</strong> / {currency attr="symbol"} {$POSTAGE}
</label>
{/form_field}
</div>
{/loop}
</div>