</li>
{% end %}
- {% if account.phone_number %}
- <li>
- <i class="fas fa-phone fa-fw"></i>
-
- <a href="tel:{{ format_phone_number_to_e164(account.phone_number) }}">
- {{ format_phone_number(account.phone_number) }}
- </a>
- </li>
+ {# Phone Numbers #}
+ {% set phone_numbers = [account.phone_number] + account.phone_numbers %}
+
+ {% if any(phone_numbers) %}
+ {% for phone_number in phone_numbers %}
+ <li>
+ <i class="fas fa-phone fa-fw"></i>
+
+ <a href="tel:{{ format_phone_number_to_e164(phone_number) }}">
+ {{ format_phone_number(phone_number) }}
+ </a>
+ </li>
+ {% end %}
{% end %}
{% if account.fax_number %}