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