From 44af9b9915a0ac0b207d55f1ee83b3680e90291e Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 2 Apr 2022 22:36:08 +0100 Subject: [PATCH] . --- atlas/filters.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atlas/filters.py b/atlas/filters.py index 17072095..737499c6 100755 --- a/atlas/filters.py +++ b/atlas/filters.py @@ -2,6 +2,7 @@ import django_filters from .models import ( Case, + CaseCollection, Condition, Finding, PathologicalProcess, @@ -55,7 +56,7 @@ class CaseCollectionFilter(django_filters.FilterSet): ) class Meta: - model = Case + model = CaseCollection fields = ( "archive", "author",