{# templates/partials/_detailed_summary.html #}

{% trans %} {{ report_detailed_summary }} {% endtrans %}

{# Loop through each processed item group (e.g., an email or a process) #} {% for d_section in sections %} {% if d_section.title %}

{{ d_section.title }}
{% if d_section.sub_title %} {{ d_section.sub_title }} {% endif %}

{% endif %} {# Loop through each log message and include the partial template #} {% for log in d_section.log_entries %} {% include 'partials/_log_entry.html' %} {% endfor %} {% endfor %}