diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-27 21:49:00 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-27 21:56:34 +0200 |
| commit | f1366d27a7ccfcd2745aa0854f217941f6b2198c (patch) | |
| tree | be28b6af27e8dd9750c93ba7296c25363eedb08e /ishtar_common/templates | |
| parent | 13bfe02ca67ec54df5895202fbee8a809a6b7245 (diff) | |
| download | Ishtar-f1366d27a7ccfcd2745aa0854f217941f6b2198c.tar.bz2 Ishtar-f1366d27a7ccfcd2745aa0854f217941f6b2198c.zip | |
Person - organization: add precise town field
Diffstat (limited to 'ishtar_common/templates')
| -rw-r--r-- | ishtar_common/templates/ishtar/sheet_person.html | 5 | ||||
| -rw-r--r-- | ishtar_common/templates/ishtar/wizard/wizard_person.html | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/sheet_person.html b/ishtar_common/templates/ishtar/sheet_person.html index dd9dc6be5..170d088ee 100644 --- a/ishtar_common/templates/ishtar/sheet_person.html +++ b/ishtar_common/templates/ishtar/sheet_person.html @@ -48,13 +48,14 @@ </table> {% endif %} -{% if item.address or item.postal_code or item.town %} +{% if item.address or item.postal_code or item.town or item.precise_town %} <h3>{% trans "Business address" %}</h3> <div class="row"> {% field_flex "Address" item.address %} {% field_flex "Address complement" item.address_complement %} {% field_flex "Postal code" item.postal_code %} - {% field_flex "Town" item.town %} + {% field_flex "Town (freeform)" item.town %} + {% field_flex "Town" item.precise_town %} </div>{% endif %} {% if item.alt_address or item.alt_postal_code or item.alt_town %} diff --git a/ishtar_common/templates/ishtar/wizard/wizard_person.html b/ishtar_common/templates/ishtar/wizard/wizard_person.html index 39aa76518..5be43cec7 100644 --- a/ishtar_common/templates/ishtar/wizard/wizard_person.html +++ b/ishtar_common/templates/ishtar/wizard/wizard_person.html @@ -69,6 +69,7 @@ {% bs_field wizard.form.address_complement %} {% bs_field wizard.form.postal_code %} {% bs_field wizard.form.town %} + {% bs_field wizard.form.precise_town %} {% bs_field wizard.form.country %} </div> </div> |
