app/Plugin/VeriTrans4G2/Resource/template/default/Shopping/vt4g_payment_complete.twig line 1

Open in your IDE?
  1. {#
  2. Copyright(c) 2018 VeriTrans Inc. All rights reserved.
  3. http://www.veritrans.co.jp/
  4. #}
  5. <div class="ec-reportDescription ec-para-normal">
  6.     {% if arrOther.title is defined and arrOther.message is defined %}
  7.         <div class="ec-rectHeading">
  8.             <h2>■{{ arrOther.title }}情報</h2>
  9.         </div>
  10.     {% endif %}
  11.     {% if arrOther.message is defined %}
  12.         <div class="text-start">
  13.             {% for key, item in arrOther.message %}
  14.                 <p style="word-break:break-all;">
  15.                     {% if item.title is defined and item.title != '' %}
  16.                         {{ item.title }}:
  17.                     {% endif %}
  18.                     {% if item.content is defined and item.content != '' %}
  19.                         {{ item.content|nl2br }}
  20.                     {% endif %}
  21.                 </p>
  22.             {% endfor %}
  23.         </div>
  24.     {% endif %}
  25. </div>