{% extends "base.html" %} {% load plmoney %} {% block title %}WOE - lista zamówień{% endblock %} {% block content %}

Zamówienia

{% if order_created_ok %}

Twoje zamówienie zostało złożone. Dziękujęmy.

{% endif %}
{% if orders %} {% if prev_page != None %} <<   {% endif %} {% if next_page != None %} >> {% endif %} {% for order in orders %} {% endfor %} {% if two_table_headers %} {% endif %}
Numer Wartość netto Wartość brutto Utworzono Szczegóły
{{ order.erpKey }} {{ order.total_netto|plmoney }} {{ order.total_currency }} {{ order.total_brutto|plmoney }} {{ order.total_currency }} {{ order.creationDate }} szczegóły
Numer Wartość netto Wartość brutto Utworzono Szczegóły

{% if prev_page != None %} <<   {% endif %} {% if next_page != None %} >> {% endif %} {% else %}

Brak zamówień.

{% endif %}
{% endblock %}