__openerp__.py 796 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. "name": "Excerpt + Image in Blog",
  6. "summary": "New layout for blog summary, including an excerpt and image",
  7. "version": "8.0.1.0.0",
  8. "category": "Website",
  9. "website": "https://grupoesoc.es",
  10. "author": "Grupo ESOC Ingeniería de Servicios, "
  11. "Odoo Community Association (OCA)",
  12. "license": "AGPL-3",
  13. "application": False,
  14. "installable": True,
  15. "images": [
  16. "images/style-default.png",
  17. ],
  18. "depends": [
  19. "website_blog",
  20. "html_image_url_extractor",
  21. "html_text",
  22. ],
  23. "data": [
  24. "views/assets.xml",
  25. "views/blog.xml",
  26. ],
  27. }