mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
8 lines
334 B
Scheme
8 lines
334 B
Scheme
|
<% loop $Options %>
|
||
|
<div class="$Class">
|
||
|
<input id="$ID" class="radio" name="$Name" type="radio" value="$Value.ATT"<% if $isChecked %>
|
||
|
checked<% end_if %><% if $isDisabled %> disabled<% end_if %> <% if $Up.Required %>required<% end_if %> />
|
||
|
<label for="$ID">$Title</label>
|
||
|
</div>
|
||
|
<% end_loop %>
|