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. 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. Bug Tracker
  21. ===========
  22. Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
  23. In case of trouble, please check there if your issue has already been reported.
  24. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
  25. `here <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_window_message%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  26. Credits
  27. =======
  28. Contributors
  29. ------------
  30. * Holger Brunn <hbrunn@therp.nl>
  31. Maintainer
  32. ----------
  33. .. image:: http://odoo-community.org/logo.png
  34. :alt: Odoo Community Association
  35. :target: http://odoo-community.org
  36. This module is maintained by the OCA.
  37. 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.
  38. To contribute to this module, please visit http://odoo-community.org.