Security update for Core, with self-updated composer
[yaffs-website] / web / themes / contrib / bootstrap / templates / file / file-upload-help.html.twig
1 {#
2 /**
3  * @file
4  * Theme override to display help text for file fields.
5  *
6  * Available variables:
7  * - description: The normal description for this field, specified by the user.
8  * - descriptions: Lines of help text for uploading a file.
9  * - popover: Markup to display the descriptions as a popover instead.
10  *
11  * @ingroup templates
12  *
13  * @see template_preprocess_file_upload_help()
14  */
15 #}
16 {% if description %}
17   {{ description }}<br>
18 {% endif %}
19 {% if popover %}
20   {{ popover }}
21 {% else %}
22   {{ descriptions|safe_join('<br>') }}
23 {% endif %}