From d083036719b8481f5d92941108ed68cf4326bc7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 8 Mar 2023 07:24:33 +0800 Subject: [PATCH] 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. --- ...nses-mobile-row.html => income-expenses-row-mobile.html} | 2 +- .../{ledger-mobile-row.html => ledger-row-mobile.html} | 2 +- .../templates/accounting/report/income-expenses.html | 6 +++--- src/accounting/templates/accounting/report/ledger.html | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) rename src/accounting/templates/accounting/report/include/{income-expenses-mobile-row.html => income-expenses-row-mobile.html} (96%) rename src/accounting/templates/accounting/report/include/{ledger-mobile-row.html => ledger-row-mobile.html} (95%) diff --git a/src/accounting/templates/accounting/report/include/income-expenses-mobile-row.html b/src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html similarity index 96% rename from src/accounting/templates/accounting/report/include/income-expenses-mobile-row.html rename to src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html index 851c1e5..2bf0716 100644 --- a/src/accounting/templates/accounting/report/include/income-expenses-mobile-row.html +++ b/src/accounting/templates/accounting/report/include/income-expenses-row-mobile.html @@ -1,6 +1,6 @@ {# 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. diff --git a/src/accounting/templates/accounting/report/include/ledger-mobile-row.html b/src/accounting/templates/accounting/report/include/ledger-row-mobile.html similarity index 95% rename from src/accounting/templates/accounting/report/include/ledger-mobile-row.html rename to src/accounting/templates/accounting/report/include/ledger-row-mobile.html index ddfc5e4..2a970ee 100644 --- a/src/accounting/templates/accounting/report/include/ledger-mobile-row.html +++ b/src/accounting/templates/accounting/report/include/ledger-row-mobile.html @@ -1,6 +1,6 @@ {# 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. diff --git a/src/accounting/templates/accounting/report/income-expenses.html b/src/accounting/templates/accounting/report/income-expenses.html index dcd3ec4..7bebab9 100644 --- a/src/accounting/templates/accounting/report/income-expenses.html +++ b/src/accounting/templates/accounting/report/income-expenses.html @@ -206,19 +206,19 @@ First written: 2023/3/5 {% if report.brought_forward %} {% with entry = report.brought_forward %}
- {% include "accounting/report/include/income-expenses-mobile-row.html" %} + {% include "accounting/report/include/income-expenses-row-mobile.html" %}
{% endwith %} {% endif %} {% for entry in report.entries %} - {% include "accounting/report/include/income-expenses-mobile-row.html" %} + {% include "accounting/report/include/income-expenses-row-mobile.html" %} {% endfor %} {% if report.total %} {% with entry = report.total %}
- {% include "accounting/report/include/income-expenses-mobile-row.html" %} + {% include "accounting/report/include/income-expenses-row-mobile.html" %}
{% endwith %} {% endif %} diff --git a/src/accounting/templates/accounting/report/ledger.html b/src/accounting/templates/accounting/report/ledger.html index 118e36c..5f98562 100644 --- a/src/accounting/templates/accounting/report/ledger.html +++ b/src/accounting/templates/accounting/report/ledger.html @@ -203,19 +203,19 @@ First written: 2023/3/5 {% if report.brought_forward %} {% with entry = report.brought_forward %}
- {% include "accounting/report/include/ledger-mobile-row.html" %} + {% include "accounting/report/include/ledger-row-mobile.html" %}
{% endwith %} {% endif %} {% for entry in report.entries %} - {% include "accounting/report/include/ledger-mobile-row.html" %} + {% include "accounting/report/include/ledger-row-mobile.html" %} {% endfor %} {% if report.total %} {% with entry = report.total %}
- {% include "accounting/report/include/ledger-mobile-row.html" %} + {% include "accounting/report/include/ledger-row-mobile.html" %}
{% endwith %} {% endif %}