mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-18 09:47:14 +00:00
fix: add city, state and country
This commit is contained in:
@@ -37,7 +37,17 @@
|
||||
</p>
|
||||
{% endif %}
|
||||
{% if (contact_list[i].address) { %}
|
||||
{%= __("Address ") %}: {%= contact_list[i].address %}<br>
|
||||
{%= __("Address ") %}: {%= contact_list[i].address %}
|
||||
{% if (contact_list[i].city) { %}
|
||||
, {%= contact_list[i].city %}
|
||||
{% endif %}
|
||||
{% if (contact_list[i].state) { %}
|
||||
, {%= contact_list[i].state %}
|
||||
{% endif %}
|
||||
{% if (contact_list[i].country) { %}
|
||||
, {%= contact_list[i].country %}
|
||||
{% endif %}
|
||||
<br>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% } %}
|
||||
|
||||
Reference in New Issue
Block a user