{% extends "base.html" %}
{% block content %}
{# ---- TOC ---- #}
{% if toc and toc|length %}
{% endif %}
{# ---- Sections ---- #}
{% for section in sections %}
{{ section.id }}. {{ section.title }}
Items: {{ section.stats.items }}
Total size: {{ section.stats.total_h }}
{% if section.stats.time_span %}Time: {{ section.stats.time_span }}{% endif %}
{# entries table for top-level section #}
{% if section.entries and section.entries|length %}
{% set entries = section.entries %}
{% include "components/entries_table.html" %}
{% endif %}
{# subsections, if any #}
{% if section.subsections and section.subsections|length %}
{% for sub in section.subsections %}
{{ sub.id }}. {{ sub.title }}
Items: {{ sub.stats.items }}
Total size: {{ sub.stats.total_h }}
{% if sub.stats.time_span %}Time: {{ sub.stats.time_span }}{% endif %}
{% if sub.entries and sub.entries|length %}
{% set entries = sub.entries %}
{% include "components/entries_table.html" %}
{% else %}