#Chores list automation
1 messages · Page 1 of 1 (latest)
{# A for loop that clears the chores and nofifies us of any new ones #} {% for chore in todo.chores_weekly_a %} {% if chore.status == "needs_action" -%} {{ todo.chores_weekly_a.item }} {% else %} service: todo.update_item target: entity_id: todo.chores_weekly_a data: item: {{ chore }} status: "needs_action" {% endif %} {% endfor %}