14 lines
527 B
HTML
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>
|