From 0afed5a98360fb4ce26f9011d7055f7b17b74d3a Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 13 Jul 2026 12:54:47 +0100 Subject: [PATCH] refactor: rename context variable from 'collection' to 'case' in CaseAuthorUpdate --- atlas/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlas/views.py b/atlas/views.py index 94e476ff..14c6fbe4 100755 --- a/atlas/views.py +++ b/atlas/views.py @@ -10588,7 +10588,7 @@ class CaseAuthorUpdate(RevisionMixin, AuthorRequiredMixin, UpdateView): def get_context_data(self, **kwargs): context = super(CaseAuthorUpdate, self).get_context_data(**kwargs) - context["collection"] = context["object"] + context["case"] = context["object"] return context