mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 08:54:45 +00:00
fix: add city, state and country
This commit is contained in:
@@ -37,7 +37,17 @@
|
|||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if (contact_list[i].address) { %}
|
{% 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 %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|||||||
Reference in New Issue
Block a user