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