{# /** * @file * Default theme implementation of a creditcard composite webform element. * * Available variables: * - content: The creditcard webform element to be output. * - flexbox: Determines if Flexbox layout should be applied to the composite * element. * * @see template_preprocess_webform_creditcard() * * @ingroup themeable */ #} {{ attach_library('webform/webform.element.composite') }} {% if flexbox %} {{ content.warning }} {% if content.name %}
{{ content.name }}
{% endif %}
{% if content.type %}
{{ content.type }}
{% endif %}
{{ content.number }}
{{ content.civ }}
{{ content.expiration }} {{ content.expiration_month }} {{ content.expiration_year }}
{% else %} {{ content }} {% endif %}