cyberstammtisch-silverstripe/themes/starter/templates/SilverStripe/Forms/CompositeField_holder_small.ss
2021-10-20 13:45:30 +02:00

14 lines
529 B
Scheme
Executable file

<$Tag id="{$HolderID.ATT}" class="CompositeField $ExtraClass.ATT <% if $ColumnCount %>multicolumn<% end_if %> <% if $Message %>has-error<% end_if %>">
<% if $Tag == "fieldset" && $Legend %>
<legend>{$Legend.XML}</legend>
<% end_if %>
<% loop $FieldList %>
<% if $ColumnCount %>
<div class="column-{$ColumnCount.ATT} {$FirstLast.ATT}">
{$SmallFieldHolder}
</div>
<% else %>
{$SmallFieldHolder}
<% end_if %>
<% end_loop %>
</$Tag>