{% extends "base.html" %} {% load i18n %} {% load static %} {% load rules %} {% block title %} {% trans 'Orders' %} {% endblock %} {% block extrajs %} {% endblock %} {% block content %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %}
{% trans 'Order' %} | {% trans 'Client' %} | {% trans 'Delivery Date' %} | {% trans 'Status' %} | {% trans 'Amount' %} | {% trans 'Actions' %} | {% for order in orders %}
---|---|---|---|---|---|
{{order.id}} | {{order.client.member}} {% if order.client.status != 'A' %} ({{ order.client.status_verbose }}) {% endif %} | {{order.delivery_date}} | {{order.get_status_display}} | {{order.price}} | {% if can_edit_data %} {% if order.status == 'O' %} {% endif %} {% endif %} |
{% include "system/_button_export.html" %} |
{% trans "Sorry, no result found" %}.