浏览代码

[Backend] Paramètres : correctif champs message global

feature/module_traiteur_v1
Guillaume 4 年前
父节点
当前提交
c3cb9fb66e
共有 1 个文件被更改,包括 10 次插入6 次删除
  1. +10
    -6
      ShopBundle/Resources/views/backend/merchant/panel_general.html.twig

+ 10
- 6
ShopBundle/Resources/views/backend/merchant/panel_general.html.twig 查看文件

@@ -12,12 +12,16 @@
<div class="col-12">
{{ form_row(form.merchantConfigs['second-line-element-menu']) }}
</div>
<div class="col-12">
{{ form_row(form.merchantConfigs['message-global-alert-type']) }}
</div>
<div class="col-12">
{{ form_row(form.merchantConfigs['message-global-alert']) }}
</div>
{% if form.merchantConfigs['message-global-alert-type'] is defined %}
<div class="col-12">
{{ form_row(form.merchantConfigs['message-global-alert-type']) }}
</div>
{% endif %}
{% if form.merchantConfigs['message-global-alert'] is defined %}
<div class="col-12">
{{ form_row(form.merchantConfigs['message-global-alert']) }}
</div>
{% endif %}
{{ macros.card_end() }}
</div>
</div>

正在加载...
取消
保存