| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-lowlevel/Resources/Private/Templates/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-lowlevel/Resources/Private/Templates/RecordStatistics.html |
<html
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true"
>
<f:layout name="Module" />
<f:section name="Content">
<h1>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:records')}</h1>
<h2>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:pages')}</h2>
<div class="table-fit">
<table class="table table-striped table-hover">
<colgroup>
<col width="24">
<col>
<col width="150">
</colgroup>
<thead>
<tr>
<th colspan="2"></th>
<th>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:count')}</th>
</tr>
</thead>
<tbody>
<f:for each="{pages}" as="item" key="name">
<tr>
<td><f:format.raw>{item.icon}</f:format.raw></td>
<td>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:{name}')}</td>
<td>{item.count}</td>
</tr>
</f:for>
</tbody>
</table>
</div>
<h2>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:doktype')}</h2>
<div class="table-fit">
<table class="table table-striped table-hover">
<colgroup>
<col width="24">
<col>
<col width="150">
</colgroup>
<thead>
<tr>
<th></th>
<th>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:doktype_value')}</th>
<th>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:count')}</th>
</tr>
</thead>
<tbody>
<f:for each="{doktypes}" as="item">
<tr>
<td><f:format.raw>{item.icon}</f:format.raw></td>
<td>{item.title}</td>
<td>{item.count}</td>
</tr>
</f:for>
</tbody>
</table>
</div>
<h2>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:tables')}</h2>
<div class="table-fit">
<table class="table table-striped table-hover">
<colgroup>
<col width="24">
<col>
<col width="150">
</colgroup>
<thead>
<tr>
<th></th>
<th>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:label')}</th>
<th>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:tablename')}</th>
<th>{f:translate(key:'LLL:EXT:lowlevel/Resources/Private/Language/locallang.xlf:total_lost')}</th>
<th></th>
</tr>
</thead>
<tbody>
<f:for each="{tables}" key="name" as="item">
<tr>
<td><f:format.raw>{item.icon}</f:format.raw></td>
<td>{item.title}</td>
<td>{name}</td>
<td>{item.count}</td>
<td><f:format.raw>{item.lostRecords}</f:format.raw></td>
</tr>
</f:for>
</tbody>
</table>
</div>
</f:section>
</html>