mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-14 23:56:13 +01:00
d9c723e2a3
Ref:#893
71 lines
3.3 KiB
HTML
71 lines
3.3 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>
|
|
|
|
<p class="btn btn-link">
|
|
<f:link.action action="new">
|
|
<f:translate key="plugin.frontEndEditor.action.new"/>
|
|
</f:link.action>
|
|
</p>
|
|
|
|
<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>
|
|
<th scope="col" colspan="2">
|
|
<f:translate key="plugin.frontEndEditor.action.actions"/>
|
|
</th>
|
|
<th scope="col" colspan="2">
|
|
<f:translate key="plugin.frontEndEditor.action.rating"/>
|
|
</th>
|
|
</tr>
|
|
<f:for each="{teas}" as="tea">
|
|
<tr>
|
|
<td>
|
|
{tea.uid}
|
|
</td>
|
|
<td>
|
|
{tea.title}
|
|
</td>
|
|
<td>
|
|
<f:link.action action="edit" arguments="{tea: tea}">
|
|
<f:translate key="plugin.frontEndEditor.action.edit"/>
|
|
</f:link.action>
|
|
</td>
|
|
<td>
|
|
<f:form action="delete" name="tea" object="{tea}">
|
|
<f:form.submit value="{f:translate(key: 'plugin.frontEndEditor.action.delete')}"
|
|
class="btn btn-danger"/>
|
|
</f:form>
|
|
</td>
|
|
<td>
|
|
<f:link.action action="rating" controller="Rating" arguments="{tea:tea,stars:1}">1</f:link.action>
|
|
<f:link.action action="rating" controller="Rating" arguments="{tea:tea,stars:2}">2</f:link.action>
|
|
<f:link.action action="rating" controller="Rating" arguments="{tea:tea,stars:3}">3</f:link.action>
|
|
<f:link.action action="rating" controller="Rating" arguments="{tea:tea,stars:4}">4</f:link.action>
|
|
<f:link.action action="rating" controller="Rating" arguments="{tea:tea,stars:5}">5</f:link.action>
|
|
({tea.stars})
|
|
</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>
|