{% extends "base_billing.html" %} {% load i18n %} {% load static %} {% block title %}{% trans 'Billing Order Details' %} ({{billing.billing_period|date:"F Y"}}){% endblock %} {% block content %}
{% trans 'Reset' %}
{% trans 'Back to summary' %} {% trans 'Print' %}
{% for order in orders %} {% endfor %}
{% trans 'Order' %} {% trans 'Client' %} {% trans 'Delivery Date' %} {% trans 'Status' %} {% trans 'Amount' %} {% trans 'Actions' %}
{{order.id}} {{order.client}} {{order.delivery_date}} {{order.get_status_display}} {{order.price}}
{% trans "Total" %} {{ total_amount }}
{% endblock %}