{% if entry.hasPublishReport %}
<div class="report-inner">
<h5 class="report-inner_heading">{{ title }}</h5>
<div class="reportListContainer">
{% for report in entry.reports %}
{% if report.isPublishByTimer == true %}
{% include "components/entry/report/_list_card.html.twig" with {item: report} %}
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}