From dbf8d66695f7158fb910da30b746e34fac6d0c48 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 18 Sep 2018 21:53:30 +0200 Subject: Fix sheet address section (refs #4241) --- ishtar_common/templates/ishtar/blocks/sheet_address_section.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ishtar_common/templates/ishtar/blocks/sheet_address_section.html b/ishtar_common/templates/ishtar/blocks/sheet_address_section.html index 917258173..fe4bd80bb 100644 --- a/ishtar_common/templates/ishtar/blocks/sheet_address_section.html +++ b/ishtar_common/templates/ishtar/blocks/sheet_address_section.html @@ -1,6 +1,10 @@ {% load i18n %} {% if item.address or item.address_complement or item.postal_code or item.town %} -

{% if item.address %}{{item.address}}{% endif %}{% if item.address_complement %}
+
+
{% trans "Address" %}
+
+
{% if item.address %}{{item.address}}{% endif %}{% if item.address_complement %}
 {{item.address_complement}}{% endif %}{% if item.postal_code or item.town %}
 {{item.postal_code}} {{item.town}}{% endif %}
-

{% endif %} +
+
{% endif %} -- cgit v1.2.3