From 1f27bde5252ebffef1d114891ca2f42dfdb7734f Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 7 Jun 2016 18:35:19 +0200 Subject: [PATCH] Fixed incorrect reference in tpl --- src/pretix/control/templates/pretixcontrol/order/index.html | 2 +- src/pretix/presale/templates/pretixpresale/event/order.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/control/templates/pretixcontrol/order/index.html b/src/pretix/control/templates/pretixcontrol/order/index.html index f5c04e2950..86d9991cf1 100644 --- a/src/pretix/control/templates/pretixcontrol/order/index.html +++ b/src/pretix/control/templates/pretixcontrol/order/index.html @@ -246,7 +246,7 @@
{% trans "Address" %}
{{ order.invoice_address.street|linebreaksbr }}
{% trans "ZIP code and city" %}
-
{{ order.invoice_address.zipcode }} {{ addr.city }}
+
{{ order.invoice_address.zipcode }} {{ order.invoice_address.city }}
{% trans "Country" %}
{{ order.invoice_address.country }}
{% trans "Phone" %}
diff --git a/src/pretix/presale/templates/pretixpresale/event/order.html b/src/pretix/presale/templates/pretixpresale/event/order.html index f78be2a521..948c24d0c0 100644 --- a/src/pretix/presale/templates/pretixpresale/event/order.html +++ b/src/pretix/presale/templates/pretixpresale/event/order.html @@ -158,7 +158,7 @@
{% trans "Address" %}
{{ order.invoice_address.street|linebreaksbr }}
{% trans "ZIP code and city" %}
-
{{ order.invoice_address.zipcode }} {{ addr.city }}
+
{{ order.invoice_address.zipcode }} {{ order.invoice_address.city }}
{% trans "Country" %}
{{ order.invoice_address.country }}
{% trans "Phone" %}