mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-14 23:56:13 +01:00
d9c723e2a3
Ref:#893
41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:layout name="Default"/>
|
|
|
|
<f:section name="main">
|
|
<h2>
|
|
<f:translate key="plugin.tea.heading"/>
|
|
</h2>
|
|
<f:link.action action="filter" controller="Rating" arguments="{stars:1}">1</f:link.action>
|
|
<f:link.action action="filter" controller="Rating" arguments="{tea:tea,stars:2}">2</f:link.action>
|
|
<f:link.action action="filter" controller="Rating" arguments="{tea:tea,stars:3}">3</f:link.action>
|
|
<f:link.action action="filter" controller="Rating" arguments="{tea:tea,stars:4}">4</f:link.action>
|
|
<f:link.action action="filter" controller="Rating" arguments="{tea:tea,stars:5}">5</f:link.action>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<f:translate key="plugin.tea.property.uid"/>
|
|
</th>
|
|
<th>
|
|
<f:translate key="plugin.tea.property.title"/>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<f:for each="{teas}" as="tea">
|
|
<tr>
|
|
<td>
|
|
{tea.uid}
|
|
</td>
|
|
<td>
|
|
<f:link.action action="show" arguments="{tea: tea}" pageUid="{settings.singleViewPageUid}">
|
|
{tea.title}
|
|
</f:link.action>
|
|
</td>
|
|
</tr>
|
|
</f:for>
|
|
</tbody>
|
|
</table>
|
|
</f:section>
|
|
</html>
|