-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweekly.j2
27 lines (26 loc) · 833 Bytes
/
weekly.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
This is my status for Week {{ week }}
{% for l in lists %}
- {{ l['name'] if l['name'] != donelabel else 'Done' }}
{%- for c in l['cards'] %}
- {{ c['name'] }}
{%- if c['desc'] %}
{% for line in c['desc'].split('\n') %}
{{ line }}
{%- endfor %}
{% endif -%}
{%- if c['checklists'] %}
{%- for cl in c['checklists'] %}
[{{ cl['name'] }}]{% if cl['complete'] %}
Completed:
{%- for cli in cl['complete'] %}
- {{ cli }}{% endfor -%}
{% endif -%}
{%- if cl['incomplete'] %}
Pending:
{%- for cli in cl['incomplete'] %}
- {{ cli }}{% endfor -%}
{% endif -%}
{% endfor -%}
{% endif -%}
{% endfor %}
{% endfor %}