mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
9 lines
388 B
Scheme
9 lines
388 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 %>
|
|
$Top.getValidationAttributesHTML().RAW />
|
|
<label for="$ID">$Title</label>
|
|
</div>
|
|
<% end_loop %>
|