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.

48 lines
1.2 KiB

  1. Client side message boxes
  2. =========================
  3. This module allows to show a message popup on the client side as result of a button.
  4. Usage
  5. =====
  6. Depend on this module and return
  7. .. code:: python
  8. {
  9. 'type': 'ir.actions.act_window.message',
  10. 'title': _('My title'),
  11. 'message': _('My message'),
  12. }
  13. You are responsible for translating the messages.
  14. Known issues / Roadmap
  15. ======================
  16. * add `message_type` to differenciate between warnings, errors, etc.
  17. * have one `message_type` to show a nonmodal warning on top right
  18. * have `button_title` to set the button title
  19. * have `buttons` containing button names and action definitions for triggering actions from the message box
  20. Credits
  21. =======
  22. Contributors
  23. ------------
  24. * Holger Brunn <hbrunn@therp.nl>
  25. Maintainer
  26. ----------
  27. .. image:: http://odoo-community.org/logo.png
  28. :alt: Odoo Community Association
  29. :target: http://odoo-community.org
  30. This module is maintained by the OCA.
  31. OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
  32. To contribute to this module, please visit http://odoo-community.org.