Browse Source

Be sure to have a correct phone number format in tel: link.

opi 8 years ago
parent
commit
307d78dffd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      coin/members/templates/members/contact.html

+ 1 - 1
coin/members/templates/members/contact.html

@@ -31,7 +31,7 @@
         {% if branding.phone_number %}
         <div class="panel">
             <h3>Téléphone</h3>
-            <p><a href="tel:{{ branding.phone_number }}">{{ branding.phone_number }}</a></p>
+            <p><a href="tel:{{ branding.phone_number|cut:' ' }}">{{ branding.phone_number }}</a></p>
         </div>
         {% endif %}
     </div>