{% extends "saas/base.html" %} {% load currency %} {% load saas_tags %} {% block saas_content %}

{{title}} for {{organization}}

{% for key, table_title in data.items %} {% for entry in table_title.table.0.values %} {% endfor %} {% for row in table_title.table %} {% for values in row.values %} {% endfor %} {% endfor %} {% for row in table_title.extra %} {% for values in row.values %} {% endfor %} {% endfor %}
{{entry.0|monthly_caption}}
{{row.key}} {% if table_title.unit %} {{values.1|humanize_money:table_title.unit}} {% else %} {{values.1}} {% endif %}
{{row.key}}{{values.1}}
{% endfor %}
{% endblock %}