diff --git a/accounting/templates/accounting/accounts/index.html b/accounting/templates/accounting/account_list.html similarity index 100% rename from accounting/templates/accounting/accounts/index.html rename to accounting/templates/accounting/account_list.html diff --git a/accounting/views.py b/accounting/views.py index b6e72bb..88dfd2d 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -1047,7 +1047,6 @@ def txn_sort(request, date): class AccountListView(ListView): """The view to list the accounts.""" queryset = Account.objects.order_by("code") - template_name = "accounting/accounts/index.html" @require_GET