You are here

purge-ui-dashboard.html.twig in Purge 8.3

Two column template borrowed from node-edit-form.html.twig to show the diagnostics overview right on the Purge configuration dashboard.

Available variables:

  • build: The render array.

File

modules/purge_ui/templates/purge-ui-dashboard.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Two column template borrowed from node-edit-form.html.twig to show the
  5. * diagnostics overview right on the Purge configuration dashboard.
  6. *
  7. * Available variables:
  8. * - build: The render array.
  9. */
  10. #}
  11. <div class="layout-purgeui-dashboard clearfix">
  12. {{ build.info }}
  13. <div class="layout-region layout-region-purgeui-secondary">
  14. {{ build.diagnostics }}
  15. {{ build.logging }}
  16. </div>
  17. <div class="layout-region layout-region-purgeui-main">
  18. {{ build|without('logging', 'diagnostics', 'info') }}
  19. </div>
  20. </div>