├── .gitignore ├── LICENSE ├── README.md └── website_embed ├── __init__.py ├── __openerp__.py ├── static ├── description │ ├── deploy1.png │ ├── deploy2.png │ ├── deploy3.png │ ├── embed1.png │ ├── icon.png │ └── index.html └── src │ ├── img │ └── thumbnail.png │ └── js │ ├── website.editor.js │ └── website.tour.js └── views ├── assets.xml └── snippet.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __init__.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/README.md -------------------------------------------------------------------------------- /website_embed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website_embed/__openerp__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/__openerp__.py -------------------------------------------------------------------------------- /website_embed/static/description/deploy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/description/deploy1.png -------------------------------------------------------------------------------- /website_embed/static/description/deploy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/description/deploy2.png -------------------------------------------------------------------------------- /website_embed/static/description/deploy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/description/deploy3.png -------------------------------------------------------------------------------- /website_embed/static/description/embed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/description/embed1.png -------------------------------------------------------------------------------- /website_embed/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/description/icon.png -------------------------------------------------------------------------------- /website_embed/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/description/index.html -------------------------------------------------------------------------------- /website_embed/static/src/img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/src/img/thumbnail.png -------------------------------------------------------------------------------- /website_embed/static/src/js/website.editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/src/js/website.editor.js -------------------------------------------------------------------------------- /website_embed/static/src/js/website.tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/static/src/js/website.tour.js -------------------------------------------------------------------------------- /website_embed/views/assets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/views/assets.xml -------------------------------------------------------------------------------- /website_embed/views/snippet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedaszilinskas/Odoo-CMS-Embed-HTML-Building-Block/HEAD/website_embed/views/snippet.xml --------------------------------------------------------------------------------