April 2016
Beginner to intermediate
400 pages
9h 16m
English
When you install the website module, the path /website/info displays some information about your Odoo instance. In this recipe, we override this in order to change this information page's layout, but also to change what is displayed.
Install the website module and inspect the path /website/info. Now craft a new module that depends on website and uses the following code.
We'll have to adapt the existing template and override the existing handler:
qweb template in a file called views/templates.xml:<?xml version="1.0" encoding="UTF-8"?> <odoo> <template id="show_website_info" inherit_id="website.show_website_info"> <xpath expr="//dl[@t-foreach='apps']" position="replace"> <table class="table"> ...