__openerp__.py 592 B

1234567891011121314151617181920212223
  1. {
  2. 'name': "HTML Form Creator",
  3. 'version': "1.1",
  4. 'author': "Sythil",
  5. 'category': "Tools",
  6. 'summary': "Creates an HTML form that you can embed anywhere",
  7. 'description': "Creates an HTML form that you can embed anywhere",
  8. 'license':'GPL-3',
  9. 'data': [
  10. 'entity_html_form.xml',
  11. 'views/snippets.xml',
  12. 'views/website_templates.xml',
  13. 'security/ir.model.access.csv',
  14. ],
  15. 'demo': [],
  16. 'images':[
  17. 'static/description/1.jpg',
  18. 'static/description/2.jpg',
  19. ],
  20. 'depends': ['web','website'],
  21. 'installable': True,
  22. }