mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 08:36:12 +01:00
1f263d8839
This is one more part of building CRUD functionality.
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
|
|
<f:layout name="FrontEndEditor"/>
|
|
|
|
<f:section name="main">
|
|
<h2>
|
|
<f:translate key="plugin.frontEndEditor.index.heading"/>
|
|
</h2>
|
|
|
|
<f:if condition="{teas}">
|
|
<f:then>
|
|
<table class="table table-striped table-hover">
|
|
<tr>
|
|
<th scope="col">
|
|
<f:translate key="plugin.frontEndEditor.property.uid"/>
|
|
</th>
|
|
<th scope="col">
|
|
<f:translate key="plugin.frontEndEditor.property.title"/>
|
|
</th>
|
|
</tr>
|
|
<f:for each="{teas}" as="tea">
|
|
<tr>
|
|
<td>
|
|
{tea.uid}
|
|
</td>
|
|
<td>
|
|
{tea.title}
|
|
</td>
|
|
</tr>
|
|
</f:for>
|
|
</table>
|
|
</f:then>
|
|
<f:else>
|
|
<p class="alert alert-info" role="alert">
|
|
<f:translate key="plugin.frontEndEditor.message.noTeas"/>
|
|
</p>
|
|
</f:else>
|
|
</f:if>
|
|
</f:section>
|
|
</html>
|