You are here

config_translation_manage_form_element.html.twig in Zircon Profile 8.0

Default theme implementation for a form element in config_translation.

Available variables:

  • element: Array that represents the element shown in the form.

    • source: The source of the translation.
    • translation: The translation for the target language.

See also

template_preprocess()

template_preprocess_config_translation_manage_form_element()

File

core/modules/config_translation/templates/config_translation_manage_form_element.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a form element in config_translation.
  5. *
  6. * Available variables:
  7. * - element: Array that represents the element shown in the form.
  8. * - source: The source of the translation.
  9. * - translation: The translation for the target language.
  10. *
  11. * @see template_preprocess()
  12. * @see template_preprocess_config_translation_manage_form_element()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. <div class="translation-set clearfix">
  18. <div class="layout-column layout-column--half translation-set__source">
  19. {{ element.source }}
  20. </div>
  21. <div class="layout-column layout-column--half translation-set__translated">
  22. {{ element.translation }}
  23. </div>
  24. </div>

Related topics