diff --git a/accounting/templates/accounting/account_detail.html b/accounting/templates/accounting/account_detail.html
index e33cc27..a0e10f9 100644
--- a/accounting/templates/accounting/account_detail.html
+++ b/accounting/templates/accounting/account_detail.html
@@ -141,7 +141,7 @@ First written: 2020/8/8
{% for child in account.child_set.all %}
-
+
{{ child }}
{% empty %}
diff --git a/accounting/templates/accounting/account_list.html b/accounting/templates/accounting/account_list.html
index ee07359..eef6fa7 100644
--- a/accounting/templates/accounting/account_list.html
+++ b/accounting/templates/accounting/account_list.html
@@ -67,7 +67,7 @@ First written: 2020/8/7
{% endif %}
-
+
{{ _("View")|force_escape }}
diff --git a/accounting/urls.py b/accounting/urls.py
index fb77042..ee05e39 100644
--- a/accounting/urls.py
+++ b/accounting/urls.py
@@ -101,7 +101,7 @@ urlpatterns = [
path("accounts/options",
views.account_options, name="accounts.options"),
path("accounts/",
- views.AccountView.as_view(), name="accounts.show"),
+ views.AccountView.as_view(), name="accounts.detail"),
# TODO: To be done
path("accounts//edit",
mia_core_views.todo, name="accounts.edit"),
|