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.

26 lines
607 B

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Odoo, Open Source Management Solution
  5. {% if author %}
  6. # This module copyright (C) {{ export_year }} {{ author }}
  7. {% else %}
  8. # This module copyright (C) {{ export_year }}
  9. {% endif %}
  10. {% if website %}
  11. # ({{ website }}).
  12. {% endif %}
  13. {% if license_text %}
  14. #
  15. {% for line in license_text %}
  16. {% if line.strip() %}
  17. # {{ line }}
  18. {% else %}
  19. #
  20. {% endif %}
  21. {% endfor %}
  22. {% endif %}
  23. #
  24. ##############################################################################
  25. {% block body %}
  26. {% endblock %}