{% macro renderPaymentMethodsConfigs(methodConfigs, currency) %} {%- apply spaceless -%}
    {%- for methodConfig in methodConfigs -%}
  1. {%- set paymentMethodData = { 'type': methodConfig.type, 'options': methodConfig.options, } -%} {%- include oro_payment_method_config_template(methodConfig.type) with { 'currency': currency, 'methodData': paymentMethodData } -%}
  2. {%- endfor -%}
{%- endapply -%} {% endmacro %}