From d2772486acd3d2ba8703330748c11155aa2ed239 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sat, 18 Jun 2016 21:32:52 +0200 Subject: [PATCH] right align amounts, fix creditnote number --- shop/templates/pdf/creditnote.html | 8 ++++---- shop/templates/pdf/invoice.html | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/shop/templates/pdf/creditnote.html b/shop/templates/pdf/creditnote.html index 44937280..a31f10a7 100644 --- a/shop/templates/pdf/creditnote.html +++ b/shop/templates/pdf/creditnote.html @@ -8,7 +8,7 @@

{{ creditnote.created|date:"b jS, Y" }}
- Creditnote #{{ invoice.pk }} + Creditnote #{{ creditnote.pk }}

@@ -25,18 +25,18 @@ {{ creditnote.text }} - + {{ creditnote.amount|currency }} Danish VAT (25%) - + {{ creditnote.vat|currency }} Total - + {{ creditnote.amount|currency }} diff --git a/shop/templates/pdf/invoice.html b/shop/templates/pdf/invoice.html index 78584ad5..2f7e2de9 100644 --- a/shop/templates/pdf/invoice.html +++ b/shop/templates/pdf/invoice.html @@ -33,9 +33,9 @@ {{ order_product.product.name }} {{ order_product.quantity }} - + {{ order_product.product.price|currency }} - + {{ order_product.total|currency }} {% endfor %} @@ -43,14 +43,14 @@ Danish VAT (25%) - + {{ invoice.order.vat|currency }} Total - + {{ invoice.order.total|currency }}