Your IP : 216.73.216.43


Current Path : /proc/thread-self/root/var/www/surf/TYPO3/src/surf/Resources/Private/Templates/Delivery/
Upload File :
Current File : //proc/thread-self/root/var/www/surf/TYPO3/src/surf/Resources/Private/Templates/Delivery/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:
        Delivery:
          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 Delivery</h1>

    <f:flashMessages />

    <table class="tx_surf">
        <tr>
            <th><f:translate key="tx_surf_domain_model_delivery.name" /></th>
            <th><f:translate key="tx_surf_domain_model_delivery.date" /></th>
            <th><f:translate key="tx_surf_domain_model_delivery.status" /></th>
            <th><f:translate key="tx_surf_domain_model_delivery.code" /></th>
            <th></th>
            <th></th>
        </tr>
        <f:for each="{deliveries}" as="delivery">
            <tr>
                <td><f:link.action action="show" arguments="{delivery : delivery}">{delivery.name}</f:link.action></td>
                <td><f:link.action action="show" arguments="{delivery : delivery}">{delivery.date -> f:format.date()}</f:link.action></td>
                <td><f:link.action action="show" arguments="{delivery : delivery}">{delivery.status}</f:link.action></td>
                <td><f:link.action action="show" arguments="{delivery : delivery}">{delivery.code}</f:link.action></td>
                <td><f:link.action action="edit" arguments="{delivery : delivery}">Edit</f:link.action></td>
                <td><f:link.action action="delete" arguments="{delivery : delivery}">Delete</f:link.action></td>
            </tr>
        </f:for>
    </table>

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