From e687183ac2cb0e1f75f237e8816f6a2692267102 Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Fri, 24 May 2024 15:51:31 -0400 Subject: [PATCH] Fix wife's meds report being shown twice --- custom_templates/status.jinja | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_templates/status.jinja b/custom_templates/status.jinja index cbc5e4a..bc3706f 100644 --- a/custom_templates/status.jinja +++ b/custom_templates/status.jinja @@ -339,7 +339,7 @@ {% endif %} {% endmacro %} -{% macro work_report_tina(type,method) %} +{% macro meds_report_tina(type,method) %} {{ tina_morning_meds(type,method) }} {{ tina_night_meds(type,method) }} {% endmacro %} @@ -352,7 +352,7 @@ {{ work_report_tina(type,method) }} {% elif type == 'full' %} {{ work_report_tina(type,method) }} - {{ work_report_tina(type,method) }} + {{ meds_report_tina(type,method) }} {% endif %} {% endmacro %} {{ cleanup(data()) }}