app/template/bravers/Block/contact_detail_block.twig line 1

Open in your IDE?
  1. {% if Contacts is defined %}
  2.     <div class="topBlocks detailBlock">
  3.         <div class="titleBlock no-space">
  4.             <div class="titleBlock__name">
  5.                 <img class="titleBlock__name__icon" src="{{ asset('assets/img/top/hatena.svg') }}" alt="CONTACT" width="32" height="32" loading="lazy">
  6.                 <h2 class="titleBlock__name__title">この商品への質問</h2>
  7.             </div>
  8.         </div>
  9.         <ul class="reply">
  10.             {% for Contact in Contacts %}
  11.                 <li class="reply__list">
  12.                     <div class="reply__list__content">
  13.                         <p class="reply__list__date">
  14.                             質問日: {{Contact.create_date|date_day}}
  15.                         </p>
  16.                         {% if Contact.Product %}
  17.                             <p class="reply__list__title">
  18.                                 <strong>{{Contact.Product.name}}</strong>
  19.                             </p>
  20.                         {% endif %}
  21.                         <p class="reply__list__detail">
  22.                             {{ Contact.contents|raw|nl2br }}
  23.                         </p>
  24.                         <div class="accrodion-list reply__list__answer">
  25.                             <button class="accordion-btn reply__list__answer__btn"><span>サイトより回答</span><p class="mark"></p></button>
  26.                             <div class="accordion__content reply__list__answer__content">
  27.                                     <p class="reply__list__answer__date">回答日時:{{Contact.reply_date|date_day}}</p>
  28.                                     <p class="reply__list__answer__detail">
  29.                                         {{ Contact.reply|raw|nl2br }}
  30.                                     </p>
  31.                             </div>
  32.                         </div>
  33.                     </div>
  34.                 </li>
  35.             {% endfor %}
  36.         </ul>
  37.         {% if Contacts|length > 3 %}
  38.             <a href="{{ url('product_contact') }}?product_id={{ Product.id }}" class="more-btn reply__btn">
  39.                 <span class="more-btn__text">すべて見る</span>
  40.                 <img class="arrow" src="{{ asset('assets/img/common/arrow-black.svg') }}" alt="詳しく見る" width="7.91" height="12.36" loading="lazy">
  41.             </a>
  42.         {% endif %}
  43.     </div>
  44. {% endif %}