config_packager-8.x-1.x-dev/templates/config-packager-assignment-configure-form.html.twig
templates/config-packager-assignment-configure-form.html.twig
{#
/**
* @file
* Default theme implementation for a package assignment configuration form.
*
* Available variables:
* - table: A draggable table for the package assignment methods.
* - attributes: A list of HTML attributes for the wrapper element.
* - children: Remaining form items.
*
* @see template_preprocess_config_packager_assignment_configure_form()
*
* @ingroup themeable
*/
#}
{%
set wrapper_classes = [
'form-item',
'table-wrapper',
]
%}
<div{{ attributes.addClass(wrapper_classes) }}>
{{ table }}
{{ children }}
</div>
