meilisearch/Resources/Private/Templates/Backend/PageModule/Summary.html
2021-04-17 00:26:33 +02:00

14 lines
527 B
HTML

<table class="typo3-dblist" style="width:100%; {f:if(condition: hidden, then: 'hidden')}">
<thead>
<tr>
<th colspan="2" style="padding-bottom: 0.5em;"><f:format.raw>{pluginLabel}</f:format.raw></th>
</tr>
</thead>
<f:for each="{settings}" as="settingValue" key="settingName" iteration="current">
<tr class="{f:if(condition: current.isOdd, then: 'bgColor4', else: 'bgColor3')}">
<td style="font-weight:bold; width:40%; padding-right: 3px;">{settingName}</td>
<td>{settingValue}</td>
</tr>
</f:for>
</table>