{% extends 'admin/layouts/base.html.twig' %} {% set active = 'app_admin_order' %} {% set breadcrumbs = [ { 'link': path('app_admin_dashboard'), 'title': 'Home' }, { 'title': 'Order', }, { 'title': 'New', } ]%} {% block stylesheets %} {% endblock %} {% block content %} {% if errors is defined and errors|length > 0 %}
{% endif %} {{ form_start(form, {'attr': {'id': 'add_order'}}) }} {# {{ form_start(form, { 'action': path('your_route_name') }) }} #}
Affiliate Details
{{ form_row(form.affiliateId) }}
Order Details

Generally


@
{{ form_row(form.status) }} {{ form_row(form.userId) }}

The invoice

Address:No billing address provided.
E-mail address:
{#

Shipment

Address: No delivery address specified.
#}
PDF document data
Position Duration Discount Total
Subtotal items: 0 €
Order total: 0 €
{# Recalculate #}
{{ form_row(form._token) }}
{{ form_end(form) }} {% endblock %}