diff --git a/hosting/templates/hosting/invoice_detail.html b/hosting/templates/hosting/invoice_detail.html index 359178b2..d1411db0 100644 --- a/hosting/templates/hosting/invoice_detail.html +++ b/hosting/templates/hosting/invoice_detail.html @@ -91,11 +91,12 @@ {% if vm %} {% if line_items %}
Product | Period | Quantity | Unit Price | Total |
---|---|---|---|---|
Product | Period | Qty | Unit Price | Total |
{% if line_item.description|len > 0 %}{{line_item.description}}{% else %}{{line_item.stripe_plan.stripe_plan_id}}{% endif %} | {{ line_item.period_start | date:'Y-m-d' }} — {{ line_item.period_end | date:'Y-m-d' }} | {{line_item.quantity}} | {{line_item.unit_amount}} | {{line_item.amount}} |
{% if line_item.description|length > 0 %}{{line_item.description}}{% else %}{{line_item.get_item_detail_str|safe}}{% endif %} | {{ line_item.period_start | date:'Y-m-d' }} — {{ line_item.period_end | date:'Y-m-d' }} | {{line_item.quantity}} | {{line_item.unit_amount_in_chf}} | {{line_item.amount_in_chf}} |
Grand Total | {{total_in_chf}} | |||
Grand Total | {{total_in_chf}} |