templito
Version:
Generates javascript files for underscore.js templates.
16 lines (14 loc) • 475 B
HTML
<!--{
interpolate: /<@=(.+?)@>/g,
evaluate: /<@(.+?)@>/g
}-->
<@ _.each(shippingValues, function(shippingValue) { @>
<div class="fieldWrapper">
<input id="shipping-value-id-<@= shippingValue.id @>"
value="<@= shippingValue.id @>" type="radio" name="shippingValue"
<@ if (shippingValue.selected) { @> checked<@ } @>>
<label for="shipping-value-id-<@= shippingValue.id @>">
<@= shippingValue.formattedLabel @>
</label>
</div>
<@ }); @>