Renamed the income-expenses-mobile-row.html and ledger-mobile-row.html templates to income-expenses-row-mobile.html and ledger-row-mobile.html, respectively.
This commit is contained in:
parent
7fe81c710b
commit
d083036719
@ -1,6 +1,6 @@
|
|||||||
{#
|
{#
|
||||||
The Mia! Accounting Flask Project
|
The Mia! Accounting Flask Project
|
||||||
income-expenses-mobile-row.html: The row in the income and expenses for the mobile devices
|
income-expenses-row-mobile.html: The row in the income and expenses for the mobile devices
|
||||||
|
|
||||||
Copyright (c) 2023 imacat.
|
Copyright (c) 2023 imacat.
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
{#
|
{#
|
||||||
The Mia! Accounting Flask Project
|
The Mia! Accounting Flask Project
|
||||||
ledger-mobile-row.html: The row in the ledger for the mobile devices
|
ledger-row-mobile.html: The row in the ledger for the mobile devices
|
||||||
|
|
||||||
Copyright (c) 2023 imacat.
|
Copyright (c) 2023 imacat.
|
||||||
|
|
@ -206,19 +206,19 @@ First written: 2023/3/5
|
|||||||
{% if report.brought_forward %}
|
{% if report.brought_forward %}
|
||||||
{% with entry = report.brought_forward %}
|
{% with entry = report.brought_forward %}
|
||||||
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
||||||
{% include "accounting/report/include/income-expenses-mobile-row.html" %}
|
{% include "accounting/report/include/income-expenses-row-mobile.html" %}
|
||||||
</div>
|
</div>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for entry in report.entries %}
|
{% for entry in report.entries %}
|
||||||
<a class="list-group-item list-group-item-action d-flex justify-content-between" href="{{ url_for("accounting.transaction.detail", txn=entry.transaction)|accounting_append_next }}">
|
<a class="list-group-item list-group-item-action d-flex justify-content-between" href="{{ url_for("accounting.transaction.detail", txn=entry.transaction)|accounting_append_next }}">
|
||||||
{% include "accounting/report/include/income-expenses-mobile-row.html" %}
|
{% include "accounting/report/include/income-expenses-row-mobile.html" %}
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if report.total %}
|
{% if report.total %}
|
||||||
{% with entry = report.total %}
|
{% with entry = report.total %}
|
||||||
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
||||||
{% include "accounting/report/include/income-expenses-mobile-row.html" %}
|
{% include "accounting/report/include/income-expenses-row-mobile.html" %}
|
||||||
</div>
|
</div>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -203,19 +203,19 @@ First written: 2023/3/5
|
|||||||
{% if report.brought_forward %}
|
{% if report.brought_forward %}
|
||||||
{% with entry = report.brought_forward %}
|
{% with entry = report.brought_forward %}
|
||||||
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
||||||
{% include "accounting/report/include/ledger-mobile-row.html" %}
|
{% include "accounting/report/include/ledger-row-mobile.html" %}
|
||||||
</div>
|
</div>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for entry in report.entries %}
|
{% for entry in report.entries %}
|
||||||
<a class="list-group-item list-group-item-action d-flex justify-content-between" href="{{ url_for("accounting.transaction.detail", txn=entry.transaction)|accounting_append_next }}">
|
<a class="list-group-item list-group-item-action d-flex justify-content-between" href="{{ url_for("accounting.transaction.detail", txn=entry.transaction)|accounting_append_next }}">
|
||||||
{% include "accounting/report/include/ledger-mobile-row.html" %}
|
{% include "accounting/report/include/ledger-row-mobile.html" %}
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if report.total %}
|
{% if report.total %}
|
||||||
{% with entry = report.total %}
|
{% with entry = report.total %}
|
||||||
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
<div class="list-group-item list-group-item-action d-flex justify-content-between">
|
||||||
{% include "accounting/report/include/ledger-mobile-row.html" %}
|
{% include "accounting/report/include/ledger-row-mobile.html" %}
|
||||||
</div>
|
</div>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user