mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-09 23:06:08 -06:00
25 lines
968 B
Twig
25 lines
968 B
Twig
{% set profile = findUserProfile(params.adv.created_by_id) %}
|
|
{% if profile.gsm_phone is not null %}
|
|
<div class="col-md-12 m-2">
|
|
<button class="btn btn-secondary w-100">
|
|
<i class="fas fa-mobile hide-number text-warning"></i>
|
|
<span class="hide-number">{{ profile.gsm_phone }}</span>
|
|
</button>
|
|
</div>
|
|
{% endif %}
|
|
{% if profile.office_phone is not empty %}
|
|
<div class="col-md-12 m-2">
|
|
<button class="btn btn-secondary w-100">
|
|
<i class="fas fa-headset hide-number text-warning"></i>
|
|
<span class="hide-number">{{ profile.office_phone }}</span>
|
|
</button>
|
|
</div>
|
|
{% endif %}
|
|
{% if profile.land_phone is not empty %}
|
|
<div class="col-md-12 m-2">
|
|
<button class="btn btn-secondary w-100">
|
|
<i class="fa fa-phone-square hide-number text-warning"></i>
|
|
<span class="hide-number">{{ profile.land_phone }}</span>
|
|
</button>
|
|
</div>
|
|
{% endif %} |