Renamed the template variables in the account list to be more meaningful in the accounting application.

This commit is contained in:
2020-08-08 14:09:02 +08:00
parent 651f527c86
commit 9686196b91
2 changed files with 8 additions and 7 deletions

View File

@ -1042,6 +1042,7 @@ def txn_sort(request, date):
class AccountListView(ListView):
"""The view to list the accounts."""
queryset = Account.objects.order_by("code")
context_object_name = "account_list"
@require_GET