+ {% for recurring_item in obj.recurring.incomes %}
+
+
{{ recurring_item.account_text }}
+
{{ recurring_item.name }}
+
{{ recurring_item.description_template }}
+
+ {% endfor %}
+
+{% else %}
+
{{ A_("There is no data.") }}
+{% endif %}
{% endblock %}
diff --git a/src/accounting/templates/accounting/option/include/detail-recurring-expense-income.html b/src/accounting/templates/accounting/option/include/detail-recurring-expense-income.html
deleted file mode 100644
index 71e3468..0000000
--- a/src/accounting/templates/accounting/option/include/detail-recurring-expense-income.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{#
-The Mia! Accounting Flask Project
-detail-recurring-expense-income.html: The recurring expense or income in the option detail
-
- Copyright (c) 2023 imacat.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
-Author: imacat@mail.imacat.idv.tw (imacat)
-First written: 2023/3/22
-#}
-
-
- {% if recurring_items %}
-
- {% for item in recurring_items %}
- {% include "accounting/option/include/detail-recurring-item.html" %}
- {% endfor %}
-
- {% endif %}
-
diff --git a/src/accounting/templates/accounting/option/include/detail-recurring-item.html b/src/accounting/templates/accounting/option/include/detail-recurring-item.html
deleted file mode 100644
index 580ed12..0000000
--- a/src/accounting/templates/accounting/option/include/detail-recurring-item.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{#
-The Mia! Accounting Flask Project
-detail-recurring-item.html: The recurring item in the option detail
-
- Copyright (c) 2023 imacat.
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
-Author: imacat@mail.imacat.idv.tw (imacat)
-First written: 2023/3/22
-#}
-{#
For SonarQube not to complain about incorrect HTML #}
-
-
{{ item.account_text }}
-
{{ item.name }}
-
{{ item.description_template }}
-
-{#
For SonarQube not to complain about incorrect HTML #}