diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/iap_mail/views | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/iap_mail/views')
| -rw-r--r-- | addons/iap_mail/views/mail_templates.xml | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/addons/iap_mail/views/mail_templates.xml b/addons/iap_mail/views/mail_templates.xml new file mode 100644 index 00000000..4d4daad4 --- /dev/null +++ b/addons/iap_mail/views/mail_templates.xml @@ -0,0 +1,112 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <template id="enrich_company"> + <p t-esc="flavor_text" /> + <div class="o_partner_autocomplete_enrich_info bg-white p-3 mt-3 mb-3 mr-5"> + <div class="col-12 row p-0 m-0"> + <div class="col-10 p-0"> + <h4> + <span class="mr-3 align-middle" t-esc="name"/> + <a t-if="twitter" class="ml-2" target="_blank" t-attf-href="http://www.twitter.com/{{twitter}}"> + <img src="/web_editor/font_to_img/61569/rgb(0,132,180)/22"/> + </a> + <a t-if="facebook" class="ml-2" target="_blank" t-attf-href="http://www.facebook.com/{{facebook}}"> + <img src="/web_editor/font_to_img/61570/rgb(59,89,152)/22"/> + </a> + <a t-if="linkedin" class="ml-2" target="_blank" t-attf-href="https://www.linkedin.com/{{linkedin}}"> + <img src="/web_editor/font_to_img/61580/rgb(0,119,181)/22"/> + </a> + <a t-if="crunchbase" class="ml-2" target="_blank" t-attf-href="https://www.crunchbase.com/{{crunchbase}}"> + <img width="19px" height="19px" src="/partner_autocomplete/static/img/crunchbase.ico"/> + </a> + </h4> + <p t-esc="description"/> + </div> + <div class="col-2 p-0 text-right"> + <img t-attf-src="{{logo}}" alt="Company Logo" style="max-width: 80px;"/> + </div> + </div> + <hr/> + + <div class="col-12 row m-0 p-0"> + <div t-if="company_type" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-building text-primary"/> + <b>Company type</b> + </div> + <div t-if="company_type" class="my-1 col-9" t-esc="company_type" /> + <div t-if="founded_year" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-calendar text-primary"/> + <b>Founded</b> + </div> + <div t-if="founded_year" class="my-1 col-9" t-esc="founded_year" /> + <t t-set="sectors" t-value="[]" /> + <t t-if="sector_primary" t-set="sectors" t-value="sectors + [sector_primary]" /> + <t t-if="industry" t-set="sectors" t-value="sectors + [industry]" /> + <t t-if="industry_group" t-set="sectors" t-value="sectors + [industry_group]" /> + <t t-if="sub_industry" t-set="sectors" t-value="sectors + [sub_industry]" /> + <div t-if="sectors" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-industry text-primary"/> + <b>Sectors</b> + </div> + <div t-if="sectors" class="my-1 col-9"> + <t t-foreach="sectors" t-as="inner_sector"> + <label t-esc="inner_sector" style="font-weight:normal; padding: 2px 10px; background-color: #eeeeee; margin: 1px 0px; border-radius: 13px;"/> + </t> + </div> + <div t-if="employees" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-users text-primary"/> + <b>Employees</b> + </div> + <div t-if="employees" class="my-1 col-9" t-esc="'%.0f' % employees" /> + <div t-if="estimated_annual_revenue" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-money text-primary"/> + <b>Estimated revenue</b> + </div> + <div t-if="estimated_annual_revenue" class="my-1 col-9"> + <span t-esc="estimated_annual_revenue" /><span> per year</span> + </div> + <div t-if="phone_numbers" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-phone text-primary"/> + <b>Phone</b> + </div> + <div t-if="phone_numbers" class="col-9"> + <t t-foreach="phone_numbers" t-as="phone_number"> + <a t-attf-href="tel:{{phone_number}}" t-esc="phone_number" style="font-weight:normal; padding: 2px 10px; background-color: #eeeeee; margin: 1px 0px; border-radius: 13px;"/> + </t> + </div> + <div t-if="email" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-envelope text-primary"/> + <b>Email</b> + </div> + <div t-if="email" class="col-9"> + <t t-foreach="email" t-as="email_item"> + <a target="_top" t-attf-href="mailto:{{email_item}}" t-esc="email_item" style="font-weight:normal; padding: 2px 10px; background-color: #eeeeee; margin: 1px 0px; border-radius: 13px;"/> + </t> + </div> + <div t-if="timezone" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-globe text-primary"/> + <b>Timezone</b> + </div> + <div t-if="timezone" class="my-1 col-9" t-esc="timezone.replace('_', ' ')" /> + <div t-if="tech" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-cube text-primary"/> + <b>Technologies Used</b> + </div> + <div t-if="tech" class="my-1 col-9"> + <t t-foreach="tech" t-as="tech_item"> + <label t-esc="tech_item.replace('_', ' ').title()" style="font-weight:normal; padding: 2px 10px; background-color: #eeeeee; margin: 1px 0px; border-radius: 13px;"/> + </t> + </div> + <div t-if="twitter_bio" class="my-1 p-0 col-3"> + <i class="fa fa-fw mr-2 fa-twitter text-primary"/> + <b>Twitter</b> + </div> + <div t-if="twitter_bio" class="my-1 col-9"> + <div t-if="twitter_followers"><t t-esc="twitter_followers"/> followers</div> + <div t-esc="twitter_bio" /> + </div> + </div> + </div> + </template> +</odoo> |
