{# /** * @file * Default general help page of Security Review. * * Available variables: * - paragraphs: Array of paragraphs (strings) to show as an introduction. * - items: Array of items (strings) to show in an unordered list after the * paragraphs. * - checks: Array of check links grouped by their namespaces. */ #} {% for paragraph in paragraphs %}

{{ paragraph }}

{% endfor %}

{% trans %} Check-specific help {% endtrans %}

{% trans %} Details and help on the security review checks. Checks are not always perfectly correct in their procedure and result. Refer to drupal.org handbook documentation if you are unsure how to make the recommended alterations to your configuration or consult the module's README.txt for support. {% endtrans %}

{% if checks is not empty %} {% for check_namespace in checks %}

{{ check_namespace.namespace }}

{% endfor %} {% endif %}