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 %}