소스 검색

[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>

Loading…
취소
저장