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 %}