{% extends "account_keeping/base.html" %} {% load i18n %} {% block main %}

{% trans "Welcome to Django Account Keeping" %}

{% trans "Click at one of the main navigation items to start. Soon we will show the most important current stats on this page." %}

{% for account, stats in accounts_stats.items %}

{{ account.name }} ({{ account.currency }})

Current balance: {{ stats.balance_gross }}

{% endfor %} {% if transactions_without_invoice %}

{% trans "Transactions without invoice" %}

{% include "account_keeping/partials/transactions_table.html" with transactions=transactions_without_invoice %} {% endif %} {% if invoices_without_pdf %}

{% trans "Invoices without PDF" %}

{% include "account_keeping/partials/invoices_table.html" with invoices=invoices_without_pdf %} {% endif %}
{% endblock %}