+
+{% set paymentFeeAdjustment = constant('MangoSylius\\PaymentFeePlugin\\Model\\AdjustmentInterface::PAYMENT_ADJUSTMENT') %}
+
+{% set paymentFeeAdjustments = order.getAdjustmentsRecursively(paymentFeeAdjustment) %}
+{% if paymentFeeAdjustments is not empty %}
+
+
+
+
+ {% for paymentFeeLabel, paymentFeeAmount in sylius_aggregate_adjustments(paymentFeeAdjustments) %}
+
+ {{ form_row(form.gatewayConfig.factoryName) }}
+ {% if form.gatewayConfig.config is defined %}
+ {% for field in form.gatewayConfig.config %}
+ {% if loop.index is odd %}
{% endif %}
+ {{ form_row(field) }}
+ {% if loop.index is even %}
{% endif %}
+ {% endfor %}
+ {% endif %}
+
+
+
+ {% for locale, translationForm in form.translations %}
+
+ {{ form_row(form.calculator) }}
+ {% for name, calculatorConfigurationPrototype in form.vars.prototypes %}
+
+
+ {% endfor %}
+
+ {% if form.calculatorConfiguration is defined %}
+ {% for field in form.calculatorConfiguration %}
+ {{ form_row(field) }}
+ {% endfor %}
+ {% endif %}
+