2018-05-26 20:46:55 +02:00
|
|
|
<!DOCTYPE html>
|
2020-09-05 12:29:57 +02:00
|
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
2018-05-26 20:46:55 +02:00
|
|
|
<f:layout name="Default"/>
|
|
|
|
|
|
|
|
<f:section name="main">
|
|
|
|
<h2>
|
2023-06-21 13:33:59 +02:00
|
|
|
<f:translate key="plugin.tea.heading"/>
|
2018-05-26 20:46:55 +02:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
<table class="table">
|
2020-10-31 15:04:44 +01:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-12-01 23:12:34 +01:00
|
|
|
<th>
|
2023-06-21 13:33:59 +02:00
|
|
|
<f:translate key="plugin.tea.property.uid"/>
|
2020-12-01 23:12:34 +01:00
|
|
|
</th>
|
|
|
|
<th>
|
2023-06-21 13:33:59 +02:00
|
|
|
<f:translate key="plugin.tea.property.title"/>
|
2020-12-01 23:12:34 +01:00
|
|
|
</th>
|
2020-10-31 15:04:44 +01:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2018-05-26 20:46:55 +02:00
|
|
|
<tbody>
|
|
|
|
<f:for each="{teas}" as="tea">
|
|
|
|
<tr>
|
|
|
|
<td scope="row">
|
|
|
|
{tea.uid}
|
|
|
|
</td>
|
|
|
|
<td>
|
2022-09-27 11:53:43 +02:00
|
|
|
<f:link.action action="show" arguments="{tea: tea}" pageUid="{settings.singleViewPageUid}">
|
2018-05-28 17:05:39 +02:00
|
|
|
{tea.title}
|
|
|
|
</f:link.action>
|
2018-05-26 20:46:55 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</f:for>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</f:section>
|
|
|
|
</html>
|