Same filename in this branch
  1. 10 core/modules/file/templates/file-widget-multiple.html.twig
  2. 10 core/themes/claro/templates/content-edit/file-widget-multiple.html.twig
  3. 10 core/themes/stable9/templates/content-edit/file-widget-multiple.html.twig
  4. 10 core/themes/starterkit_theme/templates/content-edit/file-widget-multiple.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/file/templates/file-widget-multiple.html.twig
  2. 9 core/modules/file/templates/file-widget-multiple.html.twig

Default theme implementation to display a multi file form widget.

Available variables:

  • table: Table of previously uploaded files.
  • element: The form element for uploading another file.

See also

template_preprocess_file_widget_multiple()

File

core/modules/file/templates/file-widget-multiple.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a multi file form widget.
  5. *
  6. * Available variables:
  7. * - table: Table of previously uploaded files.
  8. * - element: The form element for uploading another file.
  9. *
  10. * @see template_preprocess_file_widget_multiple()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. {{ table }}
  16. {{ element }}

Related topics