[TASK] Add some typoscript
This commit is contained in:
36
Resources/Private/Templates/Dummy/List.html
Normal file
36
Resources/Private/Templates/Dummy/List.html
Normal 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>
|
||||
Reference in New Issue
Block a user