[TASK] Add some typoscript

This commit is contained in:
Philipp Dieter
2018-12-01 00:27:26 +01:00
parent baa56b6dc3
commit c915fc2d50
13 changed files with 211 additions and 6 deletions

View File

@@ -0,0 +1,36 @@
<html xmlns:f="https://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:layout name="Default" />
This Template is responsible for creating a table of domain objects.
If you modify this template, do not forget to change the overwrite settings
in /Configuration/ExtensionBuilder/settings.yaml:
Resources:
Private:
Templates:
List.html: keep
Otherwise your changes will be overwritten the next time you save the extension in the extension builder
<f:section name="content">
<h1>Listing for Dummy</h1>
<f:flashMessages />
<table class="tx_templatesaide" >
<tr>
<th> </th>
<th> </th>
</tr>
<f:for each="{dummies}" as="dummy">
<tr>
<td><f:link.action action="edit" arguments="{dummy : dummy}">Edit</f:link.action></td>
<td><f:link.action action="delete" arguments="{dummy : dummy}">Delete</f:link.action></td>
</tr>
</f:for>
</table>
<f:link.action action="new">New Dummy</f:link.action>
</f:section>
</html>