You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.8 KiB

  1. {% extends "header.template" %}
  2. {% block body %}
  3. {
  4. 'name': '{{ prototype.name }}',
  5. 'version': '{{ prototype.version }}',
  6. 'author': '{{ prototype.author }}',
  7. 'maintainer': '{{ prototype.maintainer }}',
  8. 'website': '{{ prototype.website }}',
  9. 'license': '{{ prototype.licence }}',
  10. # Categories can be used to filter modules in modules listing
  11. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  12. # for the full list
  13. 'category': '{{ prototype.category_id.name }}',
  14. 'summary': '{{ prototype.summary }}',
  15. 'description': """
  16. {{ prototype.description }}
  17. * Module exported by the Module Prototyper module for version 8.0.
  18. * If you have any questions, please contact Savoir-faire Linux
  19. (support@savoirfairelinux.com)
  20. """,
  21. # any module necessary for this one to work correctly
  22. 'depends': [
  23. {% for dependency in prototype.dependency_ids -%}
  24. '{{ dependency.name }}',
  25. {% endfor -%}],
  26. 'external_dependencies': {
  27. 'python': [],
  28. },
  29. # always loaded
  30. 'data': [
  31. {% for data_file in data_files -%}
  32. '{{ data_file }}',
  33. {% endfor -%}],
  34. # only loaded in demonstration mode
  35. 'demo': [
  36. {% for demo_file in prototype.demo_ids -%}
  37. '{{ demo_file.name }}',
  38. {% endfor -%}],
  39. # used for Javascript Web CLient Testing with QUnit / PhantomJS
  40. # https://www.odoo.com/documentation/8.0/reference/javascript.html#testing-in-odoo-web-client
  41. 'js': [],
  42. 'css': [],
  43. 'qweb': [],
  44. 'installable': True,
  45. # Install this module automatically if all dependency have been previously and independently installed.
  46. # Used for synergetic or glue modules.
  47. 'auto_install': {{ prototype.auto_install }},
  48. 'application': {{ prototype.application }},
  49. }
  50. {% endblock %}