{% extends "_layout.html" %} {% set active_page = 'net_worth' %} {% import "_charts.html" as charts with context %} {% block content %} {{ charts.skeleton() }} {{ charts.net_worth(interval) }} {% for currency, number in api.net_worth().items() %} {% endfor %}
{{ _('Currency') }} {{ _('Net Worth') }}
{{ currency }} {{ number|format_currency(currency) }}
{% endblock %}