Skip to content
Snippets Groups Projects
Commit c3434693 authored by Fabien Pinckaers's avatar Fabien Pinckaers
Browse files

[IMP] website: minitour to install contact form on contact us page (usability:...

[IMP] website: minitour to install contact form on contact us page (usability: people think there is no contact form)
parent 8729cad8
No related branches found
No related tags found
No related merge requests found
......@@ -54,3 +54,27 @@ odoo.define("website.tour.banner", function (require) {
position: "bottom",
}]);
});
odoo.define("website.tour.contact", function (require) {
"use strict";
var core = require("web.core");
var tour = require("web_tour.tour");
var base = require("web_editor.base");
var _t = core._t;
tour.register("contact", {
url: "/page/contactus",
wait_for: base.ready(),
}, [{
trigger: "li#customize-menu",
content: _t("<b>Install a contact form</b> to improve this page."),
extra_trigger: "#o_contact_mail",
position: "bottom",
}, {
trigger: "li#install_apps",
content: _t("<b>Install new apps</b> to get more features. Let's install the <i>'Contact form'</i> app."),
position: "right",
}]);
});
......@@ -909,15 +909,15 @@ Sitemap: <t t-esc="url_root"/>sitemap.xml
<div t-field="res_company.partner_id" t-options='{
"widget": "contact",
"fields": ["name", "address", "phone", "mobile", "fax", "email"]}'/>
<t t-if="not res_company.google_map_img()">
<span class="fa fa-map-marker fa-fw mt16"/> <a t-att-href="res_company.google_map_link()" target="_BLANK"> Google Maps</a>
</t>
</address>
<t t-if="res_company.google_map_img()">
<a t-att-href="res_company.google_map_link()" target="_BLANK">
<img class="thumbnail img-responsive" t-att-src="res_company.google_map_img()" />
</a>
</t>
<t t-else="1">
<a t-att-href="res_company.google_map_link()" target="_BLANK">Visualize on Google Maps</a>
</t>
</template>
<template id="contactus" name="Contact us" page="True">
......@@ -935,7 +935,7 @@ Sitemap: <t t-esc="url_root"/>sitemap.xml
</div>
</div>
<div class="text-center mt64" name="mail_button">
<a t-attf-href="mailto:{{ res_company.email }}" class="btn btn-primary">Send us an email</a>
<a t-attf-href="mailto:{{ res_company.email }}" class="btn btn-primary" id="o_contact_mail">Send us an email</a>
</div>
</div>
<div class="col-md-4 mb32">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment