fix: add city, state and country

This commit is contained in:
Himanshu Warekar 2019-08-26 12:49:20 +05:30
parent 362c89ca73
commit 7243e774c2

View File

@ -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>
{% } %}