{% load i18n %}
{% block title %}Plata{% endblock %}
{% trans "Home" %}
{% trans "Products" %}
{% trans "Cart" %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% block content %} {% endblock %}
{% trans "Go to cart" %}
{% trans "That's what we know about you:" %}
{% trans "User" %}
{{ user }}
{% trans "Contact" %}
{{ plata.contact }}
{% trans "Order" %}
{{ plata.order }}, {{ plata.order.currency }} {{ plata.order.total|floatformat:2 }}
{% for item in plata.order.items.all %}
{{ item }}
{% endfor %}
{% if plata.order.id %} {% url plata_reporting_invoice_pdf plata.order.id as invoice_url %} {% if invoice_url %}
Invoice
{% endif %} {% endif %} {% url plata_reporting_product_xls as product_xls_url %} {% if product_xls_url %}
Products
{% endif %}