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.

91 lines
2.9 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :alt: License: AGPL-3
  3. Support branding
  4. ================
  5. If you run an Odoo support company and you support customers without an OPW,
  6. you can brand the Odoo instance accordingly using this module. This module will
  7. add a line `Supported by $yourcompany` in the menu footer and add a button to
  8. mail exception messages to your support email address.
  9. Configuration
  10. =============
  11. This module is controlled by config parameters:
  12. support_branding.company_name
  13. Your company's name
  14. support_branding.company_url
  15. Your company's website
  16. support_branding.company_color
  17. The color to show your company's name in (CSS syntax)
  18. support_branding.support_email
  19. The (optional) mailaddress to contact for support
  20. support_branding.release
  21. The (optional) version number of your deployment
  22. You probably want to depend on this module in your customer specific module and
  23. add the following XML::
  24. <record id="support_branding.config_parameter_company_name" model="ir.config_parameter">
  25. <field name="value">Your company</field>
  26. </record>
  27. <record id="support_branding.config_parameter_company_url" model="ir.config_parameter">
  28. <field name="value">https://yourwebsite.com</field>
  29. </record>
  30. <record id="support_branding.config_parameter_company_color" model="ir.config_parameter">
  31. <field name="value">#000</field>
  32. </record>
  33. <record id="support_branding.config_parameter_support_email" model="ir.config_parameter">
  34. <field name="value">support@yourwebsite.com</field>
  35. </record>
  36. <record id="config_parameter_release" model="ir.config_parameter">
  37. <field name="value">42</field>
  38. </record>Configuration
  39. Note that the email button is only visible if you configure an email address,
  40. the default is empty!
  41. Bug Tracker
  42. ===========
  43. Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
  44. In case of trouble, please check there if your issue has already been reported.
  45. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
  46. `here <https://github.com/OCA/web/issues/new?body=module:%20support_branding%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  47. Credits
  48. =======
  49. Contributors
  50. ------------
  51. * Holger Brunn <hbrunn@therp.nl>
  52. * Stefan Rijnhart <srijnhart@therp.nl>
  53. Icon
  54. ----
  55. * https://commons.wikimedia.org/wiki/File:Crystal_Clear_app_khelpcenter.png
  56. Maintainer
  57. ----------
  58. .. image:: https://odoo-community.org/logo.png
  59. :alt: Odoo Community Association
  60. :target: https://odoo-community.org
  61. This module is maintained by the OCA.
  62. OCA, or the Odoo Community Association, is a nonprofit organization whose
  63. mission is to support the collaborative development of Odoo features and
  64. promote its widespread use.
  65. To contribute to this module, please visit http://odoo-community.org.