mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
6f9d01f621
Renders into <span class="description"> instead of "title" attribute
9 lines
296 B
Scheme
9 lines
296 B
Scheme
<ul id="$ID" class="$extraClass">
|
|
<% loop Options %>
|
|
<li class="$Class">
|
|
<input id="$ID" class="radio" name="$Name" type="radio" value="$Value"<% if isChecked %> checked<% end_if %><% if isDisabled %> disabled<% end_if %> />
|
|
<label for="$ID">$Title</label>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|