Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. {foreach $options as $name => $values}
  2.  
  3. <div class="sm-text"><b>{('ms2_product_' ~ $name) | lexicon}</b></div>
  4.  
  5. {foreach $values as $value index=$index}
  6.  
  7. <label>
  8. <input type="radio" value="{$values[$index]}" name="options[{$name}]" {if $index == 0}checked="checked"{/if}/>
  9. {$values[$index]}
  10. </label>
  11.  
  12. {/foreach}
  13.  
  14. {/foreach}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement