mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
facaad5a03
Fix invalid markup in SelectionGroup selected values
24 lines
540 B
Scheme
24 lines
540 B
Scheme
<% if $IsReadonly %>
|
|
<ul class="SelectionGroup<% if extraClass %> $extraClass<% end_if %>">
|
|
<% loop $FieldSet %>
|
|
<% if $Selected %>
|
|
<li class="selected">
|
|
$RadioLabel
|
|
$FieldHolder
|
|
</li>
|
|
<% end_if %>
|
|
<% end_loop %>
|
|
</ul>
|
|
<% else %>
|
|
<ul class="SelectionGroup<% if extraClass %> $extraClass<% end_if %>">
|
|
<% loop $FieldSet %>
|
|
<li <% if Selected %>class="selected"<% end_if %>>
|
|
<label>{$RadioButton} {$RadioLabel}</label>
|
|
<% if $FieldList %>
|
|
$FieldHolder
|
|
<% end_if %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
<% end_if %>
|