From f12f489ad34652b9e6dd5182fe5ed1856d89e151 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Tue, 29 Oct 2024 14:02:12 -0300 Subject: [PATCH] feat: add tooltip to calendar icons --- app/templates/calendar_view/fragments/list.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/app/templates/calendar_view/fragments/list.html b/app/templates/calendar_view/fragments/list.html index f7c37bc..77419a4 100644 --- a/app/templates/calendar_view/fragments/list.html +++ b/app/templates/calendar_view/fragments/list.html @@ -39,23 +39,23 @@ {% for transaction in date.transactions %} {% if transaction.is_paid %} {% if transaction.type == "IN" and not transaction.account.is_asset %} - + {% elif transaction.type == "IN" and transaction.account.is_asset %} - + {% elif transaction.type == "EX" and not transaction.account.is_asset %} - + {% elif transaction.type == "EX" and transaction.account.is_asset %} - + {% endif %} {% else %} {% if transaction.type == "IN" and not transaction.account.is_asset %} - + {% elif transaction.type == "IN" and transaction.account.is_asset %} - + {% elif transaction.type == "EX" and not transaction.account.is_asset %} - + {% elif transaction.type == "EX" and transaction.account.is_asset %} - + {% endif %} {% endif %} {% endfor %}