Same filename in this branch
  1. 10 core/modules/system/templates/radios.html.twig
  2. 10 core/themes/claro/templates/form/radios.html.twig
  3. 10 core/themes/stable9/templates/form/radios.html.twig
  4. 10 core/themes/starterkit_theme/templates/form/radios.html.twig
  5. 10 core/profiles/demo_umami/themes/umami/templates/classy/form/radios.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/system/templates/radios.html.twig
  2. 9 core/modules/system/templates/radios.html.twig

Default theme implementation for a 'radios' #type form element.

Available variables

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The rendered radios.

See also

template_preprocess_radios()

File

core/modules/system/templates/radios.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a 'radios' #type form element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The rendered radios.
  9. *
  10. * @see template_preprocess_radios()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <div{{ attributes }}>{{ children }}</div>

Related topics