You are here

patchinfo-patches.html.twig in PatchInfo 8.2

Same filename and directory in other branches
  1. 8 templates/patchinfo-patches.html.twig

Default theme implementation for patch listing.

Available variables:

  • patches: List of patch information for a module and its submodules.
  • is_core: TRUE, if the patches are in Drupal core. Otherwise FALSE.

File

templates/patchinfo-patches.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for patch listing.
  5. *
  6. * Available variables:
  7. * - patches: List of patch information for a module and its submodules.
  8. * - is_core: TRUE, if the patches are in Drupal core. Otherwise FALSE.
  9. *
  10. * @see template_preprocess_patchinfo_patches()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. {% if patches %}
  16. <div class="patchinfo-patches">
  17. <div class="patchinfo-patches-title">{{ 'Patches:'|t }}</div>
  18. {{ patches }}
  19. </div>
  20. </div>
  21. {% endif %}