prjct
{% if PRJCT_ACTIVE_PROJECTS %}All active projects, with their next action items:
{% for my_project in PRJCT_ACTIVE_PROJECTS | sort %}
{% set my_project = my_project.lower() %}
{% endfor %}
{% endif %}
{% if PRJCT_SOMEDAY_PROJECTS %}
{% if my_project in PRJCT_TODO %}
{{- PRJCT_TODO[my_project].split('\n')[1] | replace('', '') | replace(' ', '') -}}
{% else -%}
—
{%- endif %}
Someday
All someday/maybe projects, with their next action items:
{% for my_project in PRJCT_SOMEDAY_PROJECTS | sort %}
{% set my_project = my_project.lower() %}
{% endfor %}
{% endif %}
{% if PRJCT_COMPLETED_PROJECTS %}
{% if my_project in PRJCT_TODO %}
{{- PRJCT_TODO[my_project].split('\n')[1] | replace('', '') | replace(' ', '') -}}
{% else -%}
—
{%- endif %}
Completed
All completed/finished projects, with their next action items:
{% for my_project in PRJCT_COMPLETED_PROJECTS | sort %}
{% set my_project = my_project.lower() %}
{% endfor %}
{% endif %}
{% if my_project in PRJCT_TODO %}
{{- PRJCT_TODO[my_project].split('\n')[1] | replace('', '') | replace(' ', '') -}}
{% else -%}
—
{%- endif %}