{% load i18n %} {% load lfs_tags %}
{% trans 'General' %} | |
---|---|
{% trans 'ID' %}: | {{ customer.id }} |
{% trans 'Registriert' %}: | {% if customer.user %} {% trans "Yes" %} ({{ customer.user.date_joined|date:_('DATE_FORMAT') }}) {% else %} {% trans "No" %} {% endif %} |
{% trans 'Invoice address' %} | {% trans 'Shipping address' %} |
---|---|
{% if invoice_address %} {{ invoice_address|safe }} {% else %} --- {% endif %} | {% if shipping_address %} {{ shipping_address|safe }} {% else %} --- {% endif %} |
{% trans "ID" %} | {% trans "Creation date" %} | {% trans "State" %} | {% trans 'Price' %} | {% trans 'Message' %} |
---|---|---|---|---|
{{ order.id }} | {{ order.created|date:_("DATETIME_FORMAT")}} | {{ order.get_state_display }} | {{order.price|currency:request}} | {% if order.message %} Yes {% else %} No {% endif %} |
{% trans "ID" %} | {% trans "Modification date" %} | {% trans 'Price' %} |
---|---|---|
{{ cart.id }} | {{ cart.modification_date|date:_("DATETIME_FORMAT") }} | {{ cart_price|currency:request }} |