mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
24 lines
479 B
Scheme
24 lines
479 B
Scheme
<% if $IsReadonly %>
|
|
<ul class="SelectionGroup<% if extraClass %> $extraClass<% end_if %>">
|
|
<% loop $FieldSet %>
|
|
<% if $Selected %>
|
|
<li$Selected>
|
|
$RadioLabel
|
|
$FieldHolder
|
|
</li>
|
|
</ul>
|
|
<% end_if %>
|
|
<% end_loop %>
|
|
<% else %>
|
|
<ul class="SelectionGroup<% if extraClass %> $extraClass<% end_if %>">
|
|
<% loop $FieldSet %>
|
|
<li$Selected>
|
|
{$RadioButton}{$RadioLabel}
|
|
<% if $FieldList %>
|
|
$FieldHolder
|
|
<% end_if %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
<% end_if %>
|