diff --git a/accounting/views.py b/accounting/views.py index 6626d21..16dc54f 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -1038,7 +1038,6 @@ 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" @method_decorator(require_GET, name="dispatch")