Todo

DB: {{ config['TODO_DB_PATH'] }}
{% if not todos %}

No todos.

{% else %} {% for t in todos %} {% endfor %}
ID Item Status Actions
{{ t['id'] }} {{ t['item'] }} {% if t['done'] %} done {% else %} open {% endif %}
{% endif %}