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.

60 lines
2.0 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # IT IS AG, software solutions
  5. # Copyright (C) 2015-TODAY IT IS AG (<http://www.itis.de, www.itis.us>).
  6. #
  7. #
  8. # The software works in conjunction with other software distributed from
  9. # other parties which is licensed under the GNU Lesser General Public
  10. # License (LGPL).
  11. # Those pieces are not owned by IT IS AG and therefore not under the terms
  12. # of the IT IS EULA, and WITHOUT ANY WARRANTY; without even the implied
  13. # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Lesser General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Lesser General Public License
  17. # along with IT IS Odoo Textblock. If not, see <http://www.gnu.org/licenses/>
  18. #
  19. ##############################################################################
  20. {
  21. 'name': "Website Contact Form Extend",
  22. 'summary': """
  23. Extended Website Contact View to give Customer the option on how to be contacted.
  24. """,
  25. 'description': """
  26. Extended Website Contact View to give Customer the option on how to be contacted.
  27. Customer can verifiy his email address with a verification link. Following that the mode of future contact can be chosen and
  28. a GDPR information request can be submitted.
  29. """,
  30. 'author': "IT IS AG, Odoo Community Association (OCA)",
  31. 'website': "https://github.com/OCA/data-protection",
  32. # Categories can be used to filter modules in modules listing
  33. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  34. # for the full list
  35. 'version': '11.0.1.0.0',
  36. 'category': 'Website',
  37. 'depends': ['base',
  38. #'website',
  39. 'contacts',
  40. 'website_crm',
  41. ],
  42. 'data': [
  43. 'views/website_contact.xml',
  44. 'views/res_partner.xml',
  45. 'views/contact_report.xml',
  46. 'data/email_templates.xml',
  47. ],
  48. }