Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

19 lines
661B

  1. {% import '@LcShop/backend/default/block/macros.html.twig' as macros %}
  2. <div class="row">
  3. <div class="col-8">
  4. {{ macros.card_start('Merchant.maintenance','light') }}
  5. <div class="col-12">
  6. {% if form.merchantConfigs['maintenance'] is defined %}
  7. {{ form_row(form.merchantConfigs['maintenance']) }}
  8. {% endif %}
  9. </div>
  10. <div class="col-12">
  11. {% if form.merchantConfigs['maintenanceIpAuthorized'] is defined %}
  12. {{ form_row(form.merchantConfigs['maintenanceIpAuthorized']) }}
  13. {% endif %}
  14. </div>
  15. {{ macros.card_end() }}
  16. </div>
  17. </div>