diff --git a/app/templates/net_worth/net_worth.html b/app/templates/net_worth/net_worth.html index 43fb68e..3997a02 100644 --- a/app/templates/net_worth/net_worth.html +++ b/app/templates/net_worth/net_worth.html @@ -14,7 +14,8 @@
- + {% for currency in currency_net_worth.values %}
@@ -49,75 +50,76 @@
- - {% regroup account_net_worth.values by account.group as account_data %} - {% for data in account_data %} - {% if data.grouper %} + + {% regroup account_net_worth.values by account.group as account_data %} + {% for data in account_data %} + {% if data.grouper %} +
+
+
+ {{ data.grouper }}
+
+
+ {% for account in data.list %}
-
- {{ data.grouper }}
+ +
+
+ +
- {% for account in data.list %} -
-
- -
-
- -
+ {% if account.exchanged and account.exchanged.total_final %} + + {% endif %} + {% endfor %} + {% else %} + {% for account in data.list %} +
+
+ +
+
+
- {% if account.exchanged and account.exchanged.total_final %} - - {% endif %} - {% endfor %} - {% else %} - {% for account in data.list %} -
-
- -
-
- -
-
-
- {% if account.exchanged and account.exchanged.total_final %} - - {% endif %} - {% endfor %} - {% endif %} - {% endfor %} - +
+ {% if account.exchanged and account.exchanged.total_final %} + + {% endif %} + {% endfor %} + {% endif %} + {% endfor %} +
@@ -133,149 +135,156 @@
{% endblock %}