mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-20 15:51:36 +02:00
185 lines
8.1 KiB
HTML
185 lines
8.1 KiB
HTML
{% load tools %}
|
|
{% load i18n %}
|
|
<div class="col card shadow">
|
|
<div class="card-body">
|
|
{% if account.account.group %}
|
|
<div class="tw-text-sm mb-2">
|
|
<span class="badge text-bg-primary ">{{ account.account.group }}</span>
|
|
</div>
|
|
{% endif %}
|
|
<h5 class="card-title">
|
|
{{ account.account.name }}
|
|
</h5>
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'projected income' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div class="text-end font-monospace tw-text-green-400">
|
|
<c-amount.display
|
|
:amount="account.income_projected"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged and account.exchanged.income_projected %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.currency.income_projected"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'projected expenses' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div>
|
|
<div class="text-end font-monospace tw-text-red-400">
|
|
<c-amount.display
|
|
:amount="account.expense_projected"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged and account.exchanged.expense_projected %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.expense_projected"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'projected total' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div
|
|
class="text-end font-monospace">
|
|
<c-amount.display
|
|
:amount="account.total_projected"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"
|
|
color="{% if account.total_projected > 0 %}green{% elif account.total_projected < 0 %}red{% endif %}"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged.total_projected and account.exchanged.total_projected %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.total_projected"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
<hr class="my-3">
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'current income' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div class="text-end font-monospace tw-text-green-400">
|
|
<c-amount.display
|
|
:amount="account.income_current"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged and account.exchanged.income_current %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.income_current"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'current expenses' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div class="text-end font-monospace tw-text-red-400">
|
|
<c-amount.display
|
|
:amount="account.expense_current"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged and account.exchanged.expense_current %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.expense_current"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'current total' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div
|
|
class="text-end font-monospace">
|
|
<c-amount.display
|
|
:amount="account.total_current"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"
|
|
color="{% if account.total_current > 0 %}green{% elif account.total_current < 0 %}red{% endif %}"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged and account.exchanged.total_current %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.total_current"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
<div>
|
|
<hr class="my-3">
|
|
<div class="d-flex justify-content-between align-items-baseline mt-2">
|
|
<div class="text-end font-monospace">
|
|
<div class="tw-text-gray-400">{% translate 'final total' %}</div>
|
|
</div>
|
|
<div class="dotted-line flex-grow-1"></div>
|
|
<div class="text-end font-monospace">
|
|
<c-amount.display
|
|
:amount="account.total_final"
|
|
:prefix="account.currency.prefix"
|
|
:suffix="account.currency.suffix"
|
|
:decimal_places="account.currency.decimal_places"
|
|
color="{% if account.total_final > 0 %}green{% elif account.total_final < 0 %}red{% endif %}"></c-amount.display>
|
|
</div>
|
|
</div>
|
|
{% if account.exchanged and account.exchanged.total_final %}
|
|
<div class="text-end font-monospace tw-text-gray-500">
|
|
<c-amount.display
|
|
:amount="account.exchanged.total_final"
|
|
:prefix="account.exchanged.currency.prefix"
|
|
:suffix="account.exchanged.currency.suffix"
|
|
:decimal_places="account.exchanged.currency.decimal_places"></c-amount.display>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% with p=percentages|get_dict_item:account_id %}
|
|
<div class="my-3">
|
|
<c-ui.percentage-distribution :percentage="p"></c-ui.percentage-distribution>
|
|
</div>
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|