templates/components/entry/detail/_entry_reports.html.twig line 1

Open in your IDE?
  1. {% if entry.hasPublishReport %}
  2.   <div class="report-inner">
  3.     <h5 class="report-inner_heading">{{ title }}</h5>
  4.     <div class="reportListContainer">
  5.       {% for report in entry.reports %}
  6.         {% if report.isPublishByTimer == true %}
  7.         {% include "components/entry/report/_list_card.html.twig" with {item: report} %}
  8.         {% endif %}
  9.       {% endfor %}
  10.     </div>
  11.   </div>
  12. {% endif %}