Your IP : 216.73.216.220


Current Path : /var/www/surf/TYPO3/src/sculptor_surf/Resources/Private/Extensions/Surf/Templates/Order/
Upload File :
Current File : /var/www/surf/TYPO3/src/sculptor_surf/Resources/Private/Extensions/Surf/Templates/Order/List.html

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
{namespace surf=Torresani\Surf\ViewHelpers}
<f:layout name="Default" />

<f:section name="content">
    <h1>Listing for Order</h1>

    <f:flashMessages />

    <table class="table table-bordered">
        <tr>
            <th style="width: 10px"></th>
            <th><f:translate key="tx_surf_domain_model_order.code" /></th>
            <th><f:translate key="tx_surf_domain_model_order.name" /></th>
        </tr>
        <f:for each="{orders}" as="order">
            <tr>
                <td><f:link.action action="show" arguments="{order : order}"><i class="fas fa-qrcode" aria-hidden="true"></i></f:link.action></td>
                <td><f:link.action action="show" arguments="{order : order}">{order.code}</f:link.action></td>
                <td><f:link.action action="show" arguments="{order : order}">{order.name}</f:link.action></td>
            </tr>
        </f:for>
    </table>

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