You are here

opigno-messaging-confirmation.html.twig in Opigno messaging 3.x

Default theme implementation to display the messaging confirmation popup.

Available varaibles:

  • body: the popup body.

File

templates/opigno-messaging-confirmation.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the messaging confirmation popup.
  5. *
  6. * Available varaibles:
  7. * - body: the popup body.
  8. */
  9. #}
  10. <div class="modal modal-ajax fade" tabindex="-1" role="dialog" aria-label="{{ 'Confirmation'|t }}">
  11. <div class="modal-dialog modal-dialog-centered" role="document">
  12. <div class="modal-content">
  13. <div class="modal-header">
  14. <h2 class="modal-title">{{ 'Confirmation'|t }}</h2>
  15. </div>
  16. <div class="modal-body">{{ body }}</div>
  17. </div>
  18. </div>
  19. </div>