blob: 433cb8e926ef78ffe44a1dc1e9921bbbaba95871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# {{ title }}
{% for chunk in chunks %}
## {{ chunk.title }}
Target: {{ chunk.target }}
Total items: {{ chunk.total_item_count }}
| GUID | Name | Note |
|--------------|--------------|--------------|
{% for item in chunk.item_view -%}
| {{ item.guid }} | {{ item.name or 'N/A' }} | {{ item.note or 'N/A' }} |
{% endfor %}
{% endfor %}
|