{% extends "base_billing.html" %} {% load i18n %} {% load static %} {% block title %}{% trans 'Billing' %}{% endblock %} {% block content %}
{{ filter.form.delivery_date }}
{% trans "2. Create Billing" %}


{% if orders %} {% for order in orders %} {% include "order_confirm_delete.html" %} {% endfor %}
{% trans 'Order' %} {% trans 'Client' %} {% trans 'Delivery Date' %} {% trans 'Status' %} {% trans 'Amount' %} {% trans 'Actions' %}
{{order.id}} {{order.client.member}} {{order.delivery_date}} {{order.get_status_display}} {{order.price}}
{% if is_paginated %} {% endif %} {% else %}

{% trans "Sorry, no result found" %}.

{% endif %} {% endblock %}