Your IP : 216.73.216.220


Current Path : /var/www/surf/TYPO3/src/surf/Resources/Private/Templates/Store/
Upload File :
Current File : /var/www/surf/TYPO3/src/surf/Resources/Private/Templates/Store/List.html

<html xmlns:f="http://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:
        Store:
          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 Store</h1>

    <f:flashMessages />

    <table class="tx_surf">
        <tr>
            <th><f:translate key="tx_surf_domain_model_store.code" /></th>
            <th><f:translate key="tx_surf_domain_model_store.name" /></th>
            <th></th>
            <th></th>
        </tr>
        <f:for each="{stores}" as="store">
            <tr>
                <td><f:link.action action="show" arguments="{store : store}">{store.code}</f:link.action></td>
                <td><f:link.action action="show" arguments="{store : store}">{store.name}</f:link.action></td>
                <td><f:link.action action="edit" arguments="{store : store}">Edit</f:link.action></td>
                <td><f:link.action action="delete" arguments="{store : store}">Delete</f:link.action></td>
            </tr>
        </f:for>
    </table>

    <f:link.action action="new">New Store</f:link.action>
</f:section>
</html>