mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
597 B
Scheme
22 lines
597 B
Scheme
|
<div class="form-group selection-group">
|
||
|
<ul class="form__field-holder form__field-holder--no-label SelectionGroup<% if $extraClass %> $extraClass<% end_if %>">
|
||
|
<% if $IsReadonly %>
|
||
|
<% loop $FieldSet %>
|
||
|
<% if $Selected %>
|
||
|
<li class="selected selection-group__item">
|
||
|
$RadioLabel
|
||
|
$SmallFieldHolder
|
||
|
</li>
|
||
|
<% end_if %>
|
||
|
<% end_loop %>
|
||
|
<% else %>
|
||
|
<% loop $FieldSet %>
|
||
|
<li class="selection-group__item<% if $Selected %> selected<% end_if %>">
|
||
|
{$RadioButton}{$RadioLabel}
|
||
|
$SmallFieldHolder
|
||
|
</li>
|
||
|
<% end_loop %>
|
||
|
<% end_if %>
|
||
|
</ul>
|
||
|
</div>
|