Procházet zdrojové kódy

Correctifs

feature/export_comptable
Guillaume před 4 roky
rodič
revize
a113d05da2
1 změnil soubory, kde provedl 15 přidání a 9 odebrání
  1. +15
    -9
      ShopBundle/Resources/views/backend/merchant/panel_delivery.html.twig

+ 15
- 9
ShopBundle/Resources/views/backend/merchant/panel_delivery.html.twig Zobrazit soubor

@@ -5,18 +5,24 @@
<div class="row">
<div class="col-8">
{{ macros.card_start('Merchant.delivery','light') }}
<div class="col-12">
{{ form_row(form.merchantConfigs['image-zones']) }}
</div>
<div class="col-12">
{{ form_row(form.merchantConfigs['downtime-per-customer']) }}
</div>
{% if form.merchantConfigs['image-zones'] is defined %}
<div class="col-12">
{{ form_row(form.merchantConfigs['image-zones']) }}
</div>
{% endif %}
{% if form.merchantConfigs['downtime-per-customer'] is defined %}
<div class="col-12">
{{ form_row(form.merchantConfigs['downtime-per-customer']) }}
</div>
{% endif %}
<div class="col-12">
{{ form_row(form.deliveryTaxRate) }}
</div>
<div class="col-12">
{{ form_row(form.merchantConfigs['bike-delivery-url-map']) }}
</div>
{% if form.merchantConfigs['bike-delivery-url-map'] is defined %}
<div class="col-12">
{{ form_row(form.merchantConfigs['bike-delivery-url-map']) }}
</div>
{% endif %}
{{ macros.card_end() }}
</div>
</div>

Načítá se…
Zrušit
Uložit