You are here

file-upload-help.html.twig in Drupal 8

Default theme implementation to display help text for file fields.

Available variables:

  • descriptions: Lines of help text for uploading a file.

File

core/modules/file/templates/file-upload-help.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display help text for file fields.
  5. *
  6. * Available variables:
  7. * - descriptions: Lines of help text for uploading a file.
  8. *
  9. * @see template_preprocess_file_upload_help()
  10. *
  11. * @ingroup themeable
  12. */
  13. #}
  14. {{ descriptions|safe_join('<br />') }}

Related topics