{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %}
{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}{% trans 'Back to Odoo products' %}
{% if error %} {% endif %}{% trans 'Customer' %}: {{ order.customer|default:'-' }} | {% trans 'State' %}: {{ order.state|default:'-' }} | {% trans 'Date' %}: {{ order.date_order|default:'-' }} | {% trans 'Total' %}: {{ order.amount_total|default:'-' }}
| {% trans 'Line description' %} | {% trans 'Product' %} | {% trans 'Quantity' %} | {% trans 'Line total' %} |
|---|---|---|---|
| {{ line.name }} | {{ line.product_name }} | {{ line.quantity }} | {{ line.total }} |
{% trans 'No matching orders found.' %}
{% endif %} {% endblock %}