blob: 764d35cd8c1a5173962355d3ac81b2aa58757d91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"title": "{{ title }}",
"chunks": [
{% for chunk in chunks %}
{
"title": "{{ chunk.title }}",
"target": "{{ chunk.target }}",
"total_item_count": {{ chunk.total_item_count }},
"item_view": [
{% for item in chunk.item_view %}
{
"guid": "{{ item.guid }}",
"name": "{{ item.name or 'N/A' }}",
"note": "{{ item.note or 'N/A' }}"
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}
|