You are here

patchinfo-excluded-modules.html.twig in PatchInfo 8.2

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

Default theme implementation for excluded modules information.

Available variables:

  • excluded_modules: List of machine readable names of modules excluded from update check
  • settings_url: URL of update module settings page.

File

templates/patchinfo-excluded-modules.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for excluded modules information.
  5. *
  6. * Available variables:
  7. * - excluded_modules: List of machine readable names of modules excluded from
  8. * update check
  9. * - settings_url: URL of update module settings page.
  10. *
  11. * @see template_preprocess_patchinfo_excluded_modules()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. {% if excluded_modules %}
  17. <div class="patchinfo-excluded-modules">
  18. <strong>{{ 'Modules excluded from update check:'|t }}</strong>
  19. {{ excluded_modules }}
  20. <p>
  21. {{ 'Change the <a href=":settings_url">update settings</a> to restore update checks for these modules.'|t({ ':settings_url': settings_url|render }) }}
  22. </p>
  23. </div>
  24. {% endif %}