{% extends "accounting/layout.html" %} {% load currency_filters %} {% block content %}

{{ organization.display_name }} / organization detail
Edit

{{ organization.turnover_excl_tax|currency|default:"-" }}

Turnover

{{ organization.profits|currency|default:"-" }}

Profits

{{ organization.tax_provisionning|currency|default:0 }}

Tax Provisionning

{{ organization.overdue_total|currency|default:0 }}

Due payments

Invoices / what you earn

{% include "books/_generics/sale_list.html" with sales=page_obj hide_edit=True %}
{% include "accounting/pagination.html" %}

Bills / what you owe

{% include "books/_generics/sale_list.html" with sales=bills hide_edit=True %}
{% include "accounting/pagination_for_bill.html" %}
{% endblock content %}