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

No categories yet.

{% endif %}
{% endfor %} {% else %}

No categories yet.

{% endif %}
{% endfor %} {% endblock %}