mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 18:31:54 +00:00
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% load django_ledger %}
|
|
{% load i18n %}
|
|
<div class="box content djetler-box-yellow">
|
|
<h2 class="has-text-centered has-text-weight-light">
|
|
{% trans 'Revenue' %}
|
|
</h2>
|
|
<h1 class="has-text-centered">
|
|
{% currency_symbol %}{{ tx_digest.group_balance.GROUP_INCOME | currency_format }}
|
|
</h1>
|
|
<h2 class="has-text-centered has-text-weight-light">
|
|
{% trans 'Expenses' %}
|
|
</h2>
|
|
<h1 class="has-text-centered">
|
|
{% currency_symbol %}{{ tx_digest.group_balance.GROUP_EXPENSES | reverse_sing | currency_format }}
|
|
</h1>
|
|
<h2 class="has-text-centered has-text-weight-light">
|
|
{% trans 'Earnings (Loss)' %}
|
|
</h2>
|
|
<h1 class="has-text-centered">
|
|
{% currency_symbol %}{{ tx_digest.group_balance.GROUP_EARNINGS | currency_format }}
|
|
</h1>
|
|
<h4 class="has-text-centered has-text-weight-light">
|
|
{% trans 'Accounting Period' %}
|
|
</h4>
|
|
{% if not has_date %}
|
|
<h3 class="has-text-centered">
|
|
{{ from_date | date }}
|
|
<span class="is-italic">{% trans 'thru' %}</span>
|
|
{{ to_date | date }}
|
|
</h3>
|
|
{% else %}
|
|
<h3 class="has-text-centered">{{ from_date | date }}</h3>
|
|
{% endif %}
|
|
</div>
|