From cace62a71843795671e2d2f7f9d57e1d0738de90 Mon Sep 17 00:00:00 2001 From: Arthur Vieira Date: Mon, 6 Jun 2022 11:10:02 -0300 Subject: [PATCH] Add producer whatsapp link to producers list Adds WhatsApp number with wa.me link between phone number and e-mail address in the producers list profile. --- app/views/producers/_fat.html.haml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/views/producers/_fat.html.haml b/app/views/producers/_fat.html.haml index 54e7c7298a..0037b0992f 100644 --- a/app/views/producers/_fat.html.haml +++ b/app/views/producers/_fat.html.haml @@ -38,6 +38,10 @@ = t :producers_contact_phone %span{"ng-bind" => "::producer.phone"} + %p.word-wrap{"ng-if" => "::producer.whatsapp_phone"} + %a{"ng-href" => "http://wa.me/{{::producer.whatsapp_phone}}", target: "_blank"} + %span{"ng-bind" => "::producer.whatsapp_phone"} + %p.word-wrap{"ng-if" => "::producer.email_address"} %a{"ng-href" => "{{::producer.email_address | stripUrl}}", target: "_blank", mailto: true} %span.obfuscatedEmail.email{"ng-bind" => "::producer.email_address | stripUrl"}