{% extends "admin/base.html" %} {% block title %}Invoice: {{ invoice.invoice_number }}{% endblock %} {% block content %}
Created: {{ invoice.created_at.strftime('%Y-%m-%d %H:%M') }}
| Description | Type | Quantity | Unit Price | Amount |
|---|---|---|---|---|
| {{ item.description }} | {{ item.item_type }} | {{ "%.2f" | format(item.quantity) }} | {{ item.unit_price | format_currency }} | {{ item.amount | format_currency }} |
|
No line items
|
||||