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.

58 lines
1.7 KiB

  1. {% extends "header.template" %}
  2. {% block body %}
  3. {
  4. 'name': '{{ prototype.human_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 # noqa
  12. # for the full list
  13. 'category': '{{ prototype.with_context({}).category_id.name }}',{# In english please! #}
  14. 'summary': '{{ prototype.summary }}',
  15. 'description': """
  16. {{ prototype.description }}
  17. * Module exported by the Module Prototyper module for version 10.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. ],
  27. 'external_dependencies': {
  28. 'python': [],
  29. },
  30. # always loaded
  31. 'data': [
  32. {% for data_file in data_files %}
  33. '{{ data_file }}',
  34. {% endfor %}
  35. ],
  36. # only loaded in demonstration mode
  37. 'demo': [
  38. {% for demo_file in prototype.demo_ids %}
  39. '{{ demo_file.name }}',
  40. {% endfor %}
  41. ],
  42. 'js': [],
  43. 'css': [],
  44. 'qweb': [],
  45. 'installable': True,
  46. # Install this module automatically if all dependency have been previously
  47. # and independently installed. Used for synergetic or glue modules.
  48. 'auto_install': {{ prototype.auto_install }},
  49. 'application': {{ prototype.application }},
  50. }
  51. {% endblock %}