diff --git a/templates/plans/order_list.html b/templates/plans/order_list.html index 732d5195..98d8ad98 100644 --- a/templates/plans/order_list.html +++ b/templates/plans/order_list.html @@ -4,40 +4,38 @@ {% block body %} {% block order_header %} -

{% trans "List of orders" %}

+

{% trans "List of orders" %}

{% endblock %} {% if object_list %} - {% block pagination_first %} - {% include "plans/pagination.html" %} - {% endblock %} + {% block order_table %} -
- +
+
- + - - - - - - - + + + + + + + {% for order in object_list %} - - - - - - - - + + + + + + + + {% endfor %} @@ -52,4 +50,7 @@ {% else %} {% blocktrans %}You do not have any orders so far.{% endblocktrans %} {% endif %} + + + {% endblock %}
ID{% trans 'Name' %}{% trans 'Created' context 'order created' %}{% trans 'Status' context 'order status' %}{% trans 'Completed' context 'order completed' %}{% trans 'Total' context 'total amount, value' %}{% trans 'Plan valid from' %}{% trans 'Plan valid until' %}{% trans 'Name' %}{% trans 'Created' context 'order created' %}{% trans 'Status' context 'order status' %}{% trans 'Completed' context 'order completed' %}{% trans 'Total' context 'total amount, value' %}{% trans 'Plan valid from' %}{% trans 'Plan valid until' %}
{{ order.pk }}{{ order.name }}{{ order.created|date }}{{ order.get_status_display }}{{ order.completed|date|default:"-" }}{{ order.total }} {{ CURRENCY }}{{ order.plan_extended_from|date|default:"-" }}{{ order.plan_extended_until|date|default:"-" }}{{ order.pk }}{{ order.name }}{{ order.created|date }}{{ order.get_status_display }}{{ order.completed|date|default:"-" }}{{ order.total }} {{ CURRENCY }}{{ order.plan_extended_from|date|default:"-" }}{{ order.plan_extended_until|date|default:"-" }}