{% extends "base.html" %} {% block title %}Net worth · Networthy HQ{% endblock %} {% block main_class %}wide{% endblock %} {% block content %} Net worth Everything you own and owe. Drill into any category to add or update — values roll up here, priced live where we can. Total net worth ₹{{ "{:,.0f}".format(net_worth) }} Assets ₹{{ "{:,.0f}".format(assets) }} Liabilities {{ '−₹' ~ '{:,.0f}'.format(liabilities) if liabilities else '₹0' }} {% macro amount(v) -%} {%- if v is not none %}₹{{ "{:,.0f}".format(v) }}{% endif -%} {%- endmacro %} {% for section in sections %} {{ section.title }} {{ amount(values.get(section.slug)) }} {% if section.children %} {% for sub in section.children %} {{ sub.title }} {{ amount(values.get(section.slug ~ '/' ~ sub.slug)) }} {% if sub.children %} {% for leaf in sub.children %} {{ leaf.title }} {% if leaf.note %}{{ leaf.note }}{% endif %} {{ amount(values.get(section.slug ~ '/' ~ sub.slug ~ '/' ~ leaf.slug)) }} {% if leaf.is_leaf %} → {% else %} {{ leaf.children|length }} inside › {% endif %} {% endfor %} {% else %} No categories yet. {% endif %} {% endfor %} {% else %} No categories yet. {% endif %} {% endfor %} {% endblock %}
Everything you own and owe. Drill into any category to add or update — values roll up here, priced live where we can.
No categories yet.