Moved the template accounting/accounts/index.html to accounting/account_list.html to follow the default template name in the accounting application.

This commit is contained in:
依瑪貓 2020-08-07 21:28:28 +08:00
parent 4342f1e34e
commit 1d9a8a0401
2 changed files with 0 additions and 1 deletions

View File

@ -1047,7 +1047,6 @@ def txn_sort(request, date):
class AccountListView(ListView): class AccountListView(ListView):
"""The view to list the accounts.""" """The view to list the accounts."""
queryset = Account.objects.order_by("code") queryset = Account.objects.order_by("code")
template_name = "accounting/accounts/index.html"
@require_GET @require_GET