diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-11 15:00:58 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-13 15:48:10 +0100 |
commit | c51cba7ffbeb8744387a07f39a8139e2fc44f111 (patch) | |
tree | 0fd8470986b1d13cb5d8cf40014899d343202768 /ishtar_common | |
parent | 600b604517d92a9e016ac39f80c1624aaa6f2b77 (diff) | |
download | Ishtar-c51cba7ffbeb8744387a07f39a8139e2fc44f111.tar.bz2 Ishtar-c51cba7ffbeb8744387a07f39a8139e2fc44f111.zip |
🩹 sheet person: fix precise town of organization (refs #6169)
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/templates/ishtar/sheet_person.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/sheet_person.html b/ishtar_common/templates/ishtar/sheet_person.html index e0ec0d887..d8f07ac2b 100644 --- a/ishtar_common/templates/ishtar/sheet_person.html +++ b/ishtar_common/templates/ishtar/sheet_person.html @@ -54,8 +54,8 @@ {% field_flex "Address" item.address %} {% field_flex "Address complement" item.address_complement %} {% field_flex "Postal code" item.postal_code %} - {% field_flex "Town (freeform)" item.town %} - {% field_flex "Town" item.precise_town %} + {% field_flex _("Town (freeform)") item.town %} + {% field_flex_detail _("Town") item.precise_town %} </div>{% endif %} {% if item.alt_address or item.alt_postal_code or item.alt_town %} @@ -74,7 +74,8 @@ {% field_flex "Address" item.attached_to.address %} {% field_flex "Address complement" item.attached_to.address_complement %} {% field_flex "Postal code" item.attached_to.postal_code %} - {% field_flex "Town" item.attached_to.town %} + {% field_flex _("Town (freeform)") item.attached_to.town %} + {% field_flex_detail _("Town") item.attached_to.precise_town %} {% field_flex "Phone" item.attached_to.phone %} {% field_flex "Mobile phone" item.attached_to.mobile_phone %} </div>{% endif %} |